jQuery(document).ready(function($){
	
	
	// navTop drop-down
	$('#navTop>ul>li').hover(
		function () {
			var pgSection = $('body').attr('id'); 
			if (pgSection && !$(this).hasClass(pgSection)) {
				$('#navTop li.' + pgSection + '>ul').addClass('tmpHide');
			}
			$(this).addClass('hover').children('ul').addClass('hover');
		},
		function () {
			$('#navTop li.' + $('body').attr('id') + '>ul').removeClass('tmpHide');
			$(this).removeClass('hover').children('ul').removeClass('hover');
		}
	);
		
	
	// tabs
	$('.tabs').addClass('js-on').tabs();
	
	// highlightBlack
	$('div.highlightBlack').addClass('js-on');

	// Carousels
	if(jQuery().jcarousel) {
		$('div.highlightBlack>ul').jcarousel({
			scroll: 5
		});
	}
	
	$(".ffolder").bind('click', function(e){
		e.preventDefault();
		var pref_id = $(this).attr('pref_id');
		var otipo = $(this).attr('otipo');
		var oid = $(this).attr('oid');
		//alert("Folder ID:" + pref_id + "\nTipo:" + otipo + "\nID:" + oid);
		$.post(urlWeb + "/ajax.groovy", {
			'op':'newfav',
			'pref_id':pref_id,
			'otipo':otipo,
			'oid':oid
		}, function(data) {
			//alert("Res: " + data);
			if(data == 'OK') {
				$("#actions1 ul").hide();
				$("#favOut").hide();
				$("#favOut").html('A&ntilde;adido');
				$("#favOut").fadeIn('normal', function(){
					$("#favOut").fadeOut('slow');
				});
			}
		});
	});
	
	$('#frmbus').bind('submit', function(e){
		if(e) e.preventDefault();
		var g = removeDiacritics($('#textBuscador').val());
		if(g.length >= 3) {
			document.location = urlWeb + '/search/?g=' + encodeURIComponent(g);
		} else {
			jAlert("Para realizar una búsqueda tienes que introducir como mínimo 3 letras", "La Central", null);
		}
		return false;
	});
	
	$('#login, #login2').bind('submit', function(e) {
		e.preventDefault();
		$(this).ajaxSubmit({
			type: "post",
			success: function(responseText, statusText) {
				if(responseText == 'OK') {
					document.location = document.location;
				} else if(responseText.substr(0, 3) == 'GO:') {
					document.location = responseText.substr(3);
				} else {
					jAlert(responseText, "La Central", null);
				}
			}
		});
	});
	
	$('#recordar').bind('submit', function(e) {
		e.preventDefault();
		$('#recordar #resubmit').attr('disabled', true);
		$(this).ajaxSubmit({
			type: "post",
			success: function(responseText, statusText) {
				if(responseText == 'OK') {
					//alert('OK')
					$("#recordar").hide();
					$("#sendok").show();
				} else {
					$('#recordar #resubmit').attr('disabled', false);
					jAlert(responseText, "La Central", null);
				}
			}
		});
	});
	
	$('#fsmail').bind('submit', function(e) {
		e.preventDefault();
		$(this).ajaxSubmit({
			type: "post",
			success: function(responseText, statusText) {
				if(responseText == 'OK') {
					alert('OK & @TODO')
				} else {
					jAlert(responseText, "La Central", null);
				}
			}
		});
	});
	
	$('#logout').bind('click', function(e){
		e.preventDefault();
		$.get(urlWeb + '/ajax.groovy?op=logout', function(){
			document.location = urlWeb;
		});
	});
	
	setInterval(function(){
		if($("#global_cesta_icon").length == 1) {
		
			if($("#global_cesta_icon").attr('qty') > 0) {
				if($("#global_cesta_icon").attr('state') == 0) {
					$("#global_cesta_icon").attr('state', 1);
					$("#global_cesta_icon").css('background-position', '0px -38px');
				} else {
					$("#global_cesta_icon").attr('state', 0);
					$("#global_cesta_icon").css('background-position', '0px 0px');
				}
			} else {
				$("#global_cesta_icon").attr('state', 0);
				$("#global_cesta_icon").css('background-position', '0px 0px');
			}
			
		}
	}, 1000);
	
	$("#global_cesta_icon").bind('click', function(){
		document.location = urlWeb + '/cesta/';
	});
	
});
