// Drop Down Menu

$(function(){

    $("#menu li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    
    });
    
    
});


// Coin Slider

$(document).ready(function() {
	
	
//	       $('body#body3413 .node a').click(function(){
//			  alert('En construction!');
//			  return false
//		 })

	
	
	
	
	$('#slider').coinslider({ 
		width: 960, // width of slider panel
		height: 432, // height of slider panel
		spw: 7, // squares per width
		sph: 5, // squares per height
		delay: 5000, // delay between images in ms
		sDelay: 30, // delay beetwen squares in ms
		opacity: 0.7, // opacity of title and navigation
		titleSpeed: 500, // speed of title appereance in ms
		effect: '', // random, swirl, rain, straight
		navigation: true, // prev next and buttons
		links : false, // show images as links 
		hoverPause: true // pause on hover
	});
	
	
				  $("a.photo, a.iframe").fancybox({ 
					 'zoomSpeedIn': 300, 
					 'zoomSpeedOut': 300, 
					 'overlayShow': false, 
					 'frameWidth': 750, 
					 'frameHeight': 550 
					 }); 
				  
			  $('#imgwrapper').cycle({ 
				  fx: 'scrollLeft',
				  speed: 800,
				  delay: 1000
			  });


});
