jQuery.noConflict(); jQuery(document).ready(function() { /* Hover image opacity */ jQuery("a[rel^='fadeimg'] img").hover(function() { jQuery(this).stop().fadeTo("fast", 0.5); },function(){ jQuery(this).stop().fadeTo("fast", 1.0); }); /* Pretty Photo */ addPrettyPhoto(); function addPrettyPhoto() { /* PrettyPhoto init */ jQuery("a[rel^='prettyPhoto']").prettyPhoto({ theme: 'facebook', overlay_gallery: false, show_title: false, hideflash: true, modal:true, }); /* PrettyPhoto hover image opacity */ jQuery("a[rel^='prettyPhoto'] img").hover(function() { jQuery(this).stop().fadeTo("fast", 0.5); },function(){ jQuery(this).stop().fadeTo("fast", 1.0); }); }; })(jQuery);