// JavaScript Document
$(function(){
	//Sub Menu
	

	$('#resultados').dialog({
		autoOpen: false,
		title: 'RESULTADOS',
		width: 840,
		height: 600,
		resizable: false
	});
	
	$('#resultados_link').click(function(){
		$('#resultados').dialog('open');
		return false;
	});
	
	$('#regalos').dialog({
		autoOpen: false,
		title: 'ESTRELLAS DORADAS',
		width: 600,
		height: 310,
		resizable: false
	});
	
	$('#regalos_link').click(function(){
		$('#regalos').dialog('open');
		return false;
	});
	
	$('#estrellas').dialog({
		autoOpen: false,
		title: 'ESTRELLAS DORADAS',
		width: 600,
		height: 310,
		resizable: false
	});
	
	$('#estrellas_link').click(function(){
		$('#estrellas').dialog('open');
		return false;
	});
	
	$('#caridad').dialog({
		autoOpen: false,
		title: 'CARIDAD',
		width: 300,
		height: 170,
		resizable: false
	});
	
	$('#caridad_link').click(function(){
		$('#caridad').dialog('open');
		return false;
	});
	
	$('#analisis').dialog({
		autoOpen: false,
		title: 'ANALISIS - TIPS',
		width: 850,
		height: 570,
		resizable: false
	});
	
	$('#analisis_link').click(function(){
		$('#analisis').dialog('open');
		return false;
	});
	
	$('#ventajas').dialog({
		autoOpen: false,
		title: 'VENTAJAS',
		width: 670,
		height: 585,
		resizable: false
	});
	
	$('#ventajas_link').click(function(){
		$('#ventajas').dialog('open');
		return false;
	});
	
	$('#enlaces').dialog({
		autoOpen: false,
		title: 'ENLACES',
		width: 620,
		height: 550,
		resizable: false
	});
	
	$('#enlaces_link').click(function(){
		$('#enlaces').dialog('open');
		return false;
	});
	
	$('#banners').dialog({
		autoOpen: false,
		title: 'INTERCAMBIO DE BANNERS',
		width: 670,
		height: 550,
		resizable: false
	});
	
	$('#banners_link').click(function(){
		$('#banners').dialog('open');
		return false;
	});
	
	$('#consejos').dialog({
		autoOpen: false,
		title: 'CONSEJOS',
		width: 670,
		height: 600,
		resizable: false
	});
	
	$('#consejos_link').click(function(){
		$('#consejos').dialog('open');
		return false;
	});
	
	$('#deportes').dialog({
		autoOpen: false,
		title: 'DEPORTES',
		width: 960,
		height: 650,
		resizable: false
	});
	
	$('#carreras').dialog({
		autoOpen: false,
		title: 'CARRERAS',
		width: 750,
		height: 550,
		resizable: false
	});
	
	$('#eventos').dialog({
		autoOpen: false,
		title: 'EVENTOS',
		width: 615,
		height: 380,
		resizable: false
	});
	
	$('#boxeo').dialog({
		autoOpen: false,
		title: 'BOXEO',
		width: 615,
		height: 835,
		resizable: false
	});
	
	$('#boxeo_link').click(function(){
		$('#boxeo').dialog('open');
		return false;
	});
	
	$('#boxeo_link2').click(function(){
		$('#boxeo').dialog('open');
		return false;
	});
	
	$('#boxeoponce').dialog({
		autoOpen: false,
		title: 'DANIEL PONCE, VOCERO DE LA FAMILIA SISEPUEDE',
		position: 'left',
		width: 610,
		height: 600,
		resizable: false
	});
	
	$('#boxeoponce_link').click(function(){
		$('#boxeoponce').dialog('open');
		return false;
	});
	
	$('#contactos').dialog({
		autoOpen: false,
		title: 'CONTACTENOS',
		width: 600,
		height: 550,
		resizable: false
	});
	
		
	$('#form').dialog({
		autoOpen: false,
		title: 'FORMULARIO',
		position: 'center',
		resizable: false,
		width: 500,
		height: 580,
		resizable: false
	});
	
	$('#form_link').click(function(){
		$('#form').dialog('open');
		$('#contactos').dialog('close');
		return false;
	});

	$('#entrar').dialog({
		autoOpen: false,
		title: 'ENTRAR A CUENTA',
		position: 'center',
		resizable: false,
		width: 540,
		height: 240,
		resizable: false
	});
	
	$('#entrar_link').click(function(){
		$('#entrar').dialog('open');
		return false;
	});


	$('#llamadas').dialog({
		autoOpen: false,
		title: 'Llamadas Gratis',
		position: 'center',
		resizable: false,
		width: 475,
		height: 240
	});
	
	$('#llamadas_link').click(function(){
		$('#llamadas').dialog('open');
		return false;
	});
	
	$('#comojugar_link').click(function(){
		$('#comojugar').dialog('open');
		return false;
	});
	
	$('#comojugar').dialog({
		autoOpen: false,
		title: '&iquest;C&Oacute;MO JUGAR EN DEPORTES?',
		position: 'center',
		resizable: false,
		width: 720,
		height: 500
	});
	
	$('#tutorial_link').click(function(){
		$('#tutorial').dialog('open');
		return false;
	});
	
	$('#tutorial').dialog({
		autoOpen: false,
		title: 'TUTORIAL',
		position: 'center',
		resizable: false,
		width: 820,
		height: 650
	});
	

	$('#terminos_link').click(function(){
		$('#terminos').dialog('open');
		return false;
	});
	
	$('#terminos').dialog({
		autoOpen: false,
		title: 'TERMINOS Y CONDICIONES',
		position: 'center',
		resizable: false,
		width: 600,
		height: 500
	});
	

	$('#terminos_link').click(function(){
		$('#terminos').dialog('open');
		return false;
	});
	
	$('#reglas').dialog({
		autoOpen: false,
		title: 'REGLAS GENERALES',
		position: 'center',
		resizable: false,
		width: 780,
		height: 500
	});
	
	$('#reglas_link').click(function(){
		$('#reglas').dialog('open');
		return false;
	});
	
	$(document).ready(function(){
    	$("#accordion").accordion({
			autoHeight: false
		});
  	});
});