/**
 * Global Name Space =)
 */
var Root = {};

$(function() {
	$('#side_bar_main').css('height', '100%');

	if (navigator.userAgent.indexOf('iPad') > -1) {
		$("#background").css('display', 'none');
	} else {
		$("#background").ezBgResize();
	}

	/* DEMOREEL */
	$("#reel").fancybox({
		'centerOnScroll' : true,
		'overlayOpacity' : .90,
		'overlayColor' : '#000',
		'titleShow' : false,
		'padding' : 0,
		'margin' : 0,
		'centerOnScroll' : false
	});

	/* ENVIO DE NEWS */
	$('#name_news, #email_news, #send_news').focus(function() {
		$('#msg_news').html('');
	});
	$('#send_news').click(function(e) {
		e.preventDefault();
		if ($('#name_news').val() == '' || $('#email_news').val() == '') {
			$('#msg_news').html("Todos los campos son requeridos.");
		} else {
			$.quarkAjax(
				'home/save-news', { 
				type: "POST",
				data: $('#frm_news').serialize(),
				success : function(data) {
					if(data==1){
						$('#msg_news').html("Gracias por registrarte.");
					} else {
						$('#msg_news').html("Ha ocurrido un error. Favor de intentarlo nuevamente.");
					}
				}
			});
		}
	});
});

/**
 * SUBMENU
 */
jQuery(function($) {
	$('.dropdown').css({
		visibility : "visible",
		display : "none"
	}).each(function() {
		$(this).parent().eq(0).hover(function() {
			$('.dropdown:eq(0)', this).show(); // muestra dropdown menu
			// $(this).find("a").eq(0).addClass('selected'); // mantiene el
			// boton seleccionado
		}, function() {
			$('.dropdown:eq(0)', this).hide(); // esconde dropdown menu
			// $(this).find("a").eq(0).removeClass('selected'); // deselecciona
			// el boton seleccionado
		});
	});
	$(window).resize(function() {
		$('#side_bar_main').css('height', '100%');
	});

});
