jQuery(document).ready(function(){

    jQuery(".collMainIMGholder img").removeAttr('title');

    jQuery.each(jQuery.browser, function(i) {
       if(jQuery.browser.msie){
            jQuery(".collMainIMGholder").find('a').hide();
            jQuery(".collIMGholder").find('a').hide();

           jQuery(".collMainIMGholder").each(function() {
                jQuery(this).hover(
                    function() { jQuery(this).find('a').show(); },
                    function() { jQuery(this).find('a').hide(); });
            });

           jQuery(".collIMGholder").each(function() {
                jQuery(this).hover(
                    function() { jQuery(this).find('a').show(); },
                    function() { jQuery(this).find('a').hide(); });
            });

       }else{
            jQuery(".collMainIMGholder a").animate({"opacity": "0"}, "fast");
            jQuery(".collIMGholder a").animate({"opacity": "0"}, "fast");

            jQuery(".collMainIMGholder a").each(function() {
                jQuery(this).hover(
                    function() {
                    jQuery(this).stop().animate({"opacity": "1"}, "normal");
                    },
                    function() {
                    jQuery(this).stop().animate({"opacity": "0"}, "fast");
                })
            });

            jQuery(".collIMGholder a").each(function() {
                jQuery(this).hover(
                    function() {
                    jQuery(this).stop().animate({"opacity": "1"}, "normal");
                    },
                    function() {
                    jQuery(this).stop().animate({"opacity": "0"}, "fast");
                })
            });
       }
     });

});
