www.gusucode.com > 200套html5精品模板1_50 > 200套html5精品模板1_50/004/js/fade.js

    jQuery(document).ready(function () {
		if (jQuery.browser.msie && jQuery.browser.version < 7) return; // Don't execute code if it's IE6 or below cause it doesn't support it.
		
		jQuery('.ts-display-pf-img').hover(
			function() {
				jQuery(this).find('.rollover').stop().fadeTo(500, 0.60);
			},
			function() {
				jQuery(this).find('.rollover').stop().fadeTo(500, 0);
			}
		)
});