$(document).ready(function() { 
   $('ul.menu').superfish({ 
       delay:       1000,                            // one second delay on mouseout 
       animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
       speed:       'slow',                          // faster animation speed 
       autoArrows:  false,                           // disable generation of arrow mark-up 
       dropShadows: false                            // disable drop shadows 
   }); 
});

$(document).ready(function() { 
    $("#tabs").tabs("div.mrp", {event:'mouseover',effect: 'fade'});
});

$(document).ready(function(){
   $(document).pngFix();
});

$(document).ready(function() { 
   $.localScroll();
});

$(document).ready(function(){
    $("div.portfolio-content").fadeTo("slow", 1);
    $("div.portfolio-content img").hover(function(){
        $(this).fadeTo("slow", 0.4);
	},function(){
        $(this).fadeTo("slow", 1);
    });
});

$(document).ready(function(){
   $("a[rel^='prettyPhoto']").prettyPhoto();
});