  // No conflict to use mootools
	   jQuery.noConflict();
 
 jQuery(document).ready(function() { 
       
	  jQuery(document).pngFix(); 
	   
	   // load superfish menu
	   jQuery("ul.sf-menu").superfish({  
		autoArrows:    false,  
    	dropShadows:   false,
		 animation:   {height:'show'}  // fade-in and slide-down animation 
		}); 
	   
	   // Project Menu
	   
	   // Hide all pics
	   jQuery(".project-menu-pics .csc-textpic-imagerow").hide();
	   
	   // show Pics WRAP
	   jQuery(".project-menu-pics").show();
	   
	   // show first pic
	   jQuery(".project-menu-pics .csc-textpic-imagerow:first").show();
	   
		jQuery(".project-menu-links a").each(function(index) {
        	jQuery(this).mouseover(function() {
               	// fist hide all pics
				jQuery(".project-menu-pics .csc-textpic-imagerow").hide();
				// show the right pic now
				jQuery(".project-menu-pics .csc-textpic-imagerow").eq(index).show();
       		 });
		}); 
		

												
    }); 
	

