
(function($){
$(document).ready(function() {

	/* Pretty Photo */
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'facebook',
		social_tools: false
	});
    $("a[rel^='prettyPhoto']")
        .hover(function(){
            $(this).find('img').stop(true,true).fadeTo('fast', 0.55);
        }, function(){
            $(this).find('img').stop(true,true).fadeTo('fast', 1);
        });

});
})(jQuery);

