var $jq = jQuery.noConflict();
$jq(document).ready(function()
{   
    $jq(".gal img").css({
            "opacity" : 1
    });
     
    $jq(".gal img").hover(function(){
        $jq(this).stop().animate({"opacity" : 0.6}, "slow");
        }, function() {
        $jq(this).stop().animate({"opacity" : 1}, "slow");
    });
    
    /*$jq(".gal img").mouseover(function(){
        $jq(this).stop().animate(
        {
            "opacity" :1
        }, 500);
        //$jq(this).stop().fadeTo("500", 1);
    });
    
    $jq(".gal img").mouseout(function(){
        $jq(this).stop().animate(
        {
            "opacity" : 0.6
        }, 500);
        
        //$jq(this).stop().fadeTo("500", 0.6);
    });*/
});