// JavaScript Document
		$(document).ready(function() {

			$("#thumbs a").fancybox({
				'titleShow'		: true,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'overlayOpacity' : '0.5',
				'overlayColor' : '#000'
			});			
			
			$("#accordion").accordion({
			autoHeight: false,
			cleanStyle: true
			});
			$("h2").click(function() {
				var imagen = $(this).find('a').attr("href");
				$('#imgPrincipal').fadeOut('fast',function(){
					$("#imgPrincipal").attr({src : imagen});
					$('#imgPrincipal').fadeIn('fast');
					});
			});
			$('#menu ul li a')
			$('#menu ul li a')
			.css( {backgroundPosition: "-90px 0"} )
				.hover(
				function(){
					$(this).stop().animate({ 
    					//opacity: 0.5,
						color: "#011b56",
						borderColor: "#011b56",
						backgroundPosition: '00px 0'
						},200);
				},
				function(){
					$(this).stop().animate({ 
    					//opacity: 1,
						color: "#FFFFFF",
						borderColor: "#FFFFFF",
						backgroundPosition: '-90px 0'
						},200);
				}); 

		});
