    $(document).ready(
        function()
        {
            $('.Product').hover(
                function(){
                    var $obj=$(this).find('img');
                    $obj.stop();
                    $obj.animate(
                        {
                           opacity:0.5 
                        }
                    )
                }
                ,function(){
                   var $obj=$(this).find('img');
                   $(this).find('img').stop();
                   $(this).find('img').animate(
                        {
                           opacity:1 
                        }
                    )
                }
            )
        }
    )
        $(document).ready(
        function()
        {
            $('.inMainCen .img').hover(
                function(){
                    var $obj=$(this).find('img');
                    $obj.stop();
                    $obj.animate(
                        {
                           opacity:0.5 
                        }
                    )
                }
                ,function(){
                   var $obj=$(this).find('img');
                   $(this).find('img').stop();
                   $(this).find('img').animate(
                        {
                           opacity:1 
                        }
                    )
                }
            )
        }
    )
