
var $j = jQuery.noConflict();
  
// superfish  
    $j(document).ready(function() { 
        $j('ul.menu').superfish({ 
            delay:       700,   
            autoArrows:  false,                            
            dropShadows: false                             
        }); 
    }); 

// fade
	$j(document).ready(function(){
	   $j(".fade").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 100% when the page loads
	   $j(".fade").hover(function(){
	   $j(this).fadeTo("slow", 0.70); // This should set the opacity to 70% on hover
	   },function(){
	   $j(this).fadeTo("slow", 1.0); // This should set the opacity back to 100% on mouseout
	   });
	});


// Coda Slider
	$j().ready(function() {
   		$j('#coda-slider-1').codaSlider({
       	dynamicArrows: false,
       	dynamicTabs: false
   		});
	});
