$(document).ready(function(){
	$('h1').textShadow({
		color:   "#00467c",
		xoffset: "0px",
		yoffset: "0px",
		radius:  "1px",
		opacity: "20"
	});
	
	$('#textoportada p').textShadow({
		color:   "#000000",
		xoffset: "0px",
		yoffset: "0px",
		radius:  "1px",
		opacity: "20"
	});
		
	$('#seccion h1').removeTextShadow();
	
	$('a.lightbox').lightBox();

	
    $('#visor').jcarousel({
    	wrap: 'circular',
		scroll:1,
		easing:"swing",
		auto:5
    });
	
	$('.ad-gallery').adGallery({
		width:676,
		height:507,
		thumb_opacity: 0.7,
		animation_speed: 400, // Which ever effect is used to switch images, how long should it take?
  		display_next_and_prev: true, // Can you navigate by clicking on the left/right on the image?
  		display_back_and_forward: true, // Are you allowed to scroll the thumb list?
 		scroll_jump: 0, // If 0, it jumps the width of the container

	});
	
	///***************HOVER NAVEGACION**************************//
	
	/*$('#navegacion li a div').append('<span class="hover"></span>');

	$('#navegacion li a div').hover(function() {
		$('.hover', this).stop().animate({
			'opacity': 1
			}, 300)
		},function() {
			$('.hover', this).stop().animate({
				'opacity': 0
				}, 300)
	});*/	
	
	///***************** CONTACTO **************************//
	$('#frmcontacto').validate();
	
	$('#btnenviarcontacto').click(function(){
		if ($('#frmcontacto').valid()) {
			var datos=$('#frmcontacto').serialize();
			var url = baseURL + "/contacto/enviarmail";
			$.ajax({
				url: url,
				cache: false,
				async: false,
				data:datos,
				type: "POST",
				timeout: 10000,
				success: function(response){
					$('#princolcont').html(response);
				},
				error: function(response){
					jAlert("Se ha producido un error");
				}
			});
		}
		else {
			return false;
		}
	});
});