jQuery(document).ready(function(){

            Cufon.replace('h4', { fontFamily: 'Eurofurence' });

			Cufon.replace('h1.titulo, h2, h3, h6, ul#submenu li a',  { fontFamily: 'Futura LT Book' });

		jQuery('ul#banner').cycle({ 

			fx:    'fade', 

			timeout:  7000

		 });

jQuery('#cycle').cycle({
		 
		    fx: 'fade', 

			timeout:  7000
			
	     });


	$("ul#banner").css("z-index","20");

	$("ul#menu").css("z-index","50");

	jQuery("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_square'});

	

	/* black and white effect */

	

		$("div#equipe div.panel").hover(function() { //On hover...

		

		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'

		

		//Set a background image(thumbOver) on the &lt;a&gt; tag 

		//$(this).find("div.panel").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});

		//Fade the image to 0 

		$(this).find("div.panel").stop().fadeTo('normal', 0 , function() {

			$(this).hide() //Hide the image after fade

		}); 

	} , function() { //on hover out...

		//Fade the image to 1 

		$(this).find("div.panel").stop().fadeTo('normal', 1).show();

	});





});
