
var $j = jQuery.noConflict();

$j(document).ready(function(){ 

 $j('.blog-module .post-tnail img, .postarea .post-tnail img, #video-area .post-tnail img').each(function () {
        $j(this).hover(function () {
            $j(this).stop().animate({
                opacity: 0.3
            }, 300);
        }, function () {
            $j(this).stop().animate({
                opacity: 1.0
            }, 300);
        });
    }); 
	
	$j("a[rel^='prettyPhoto']").prettyPhoto({
        theme: 'dark_square'
    });
	
	$j("#social a, a.url_prodotto, .related-product a").tipTip();

	
});	
