$(document).ready(function() {
	if ($.browser.msie && $.browser.version.substring(0,1) === '6') {
		// DO NOTHING //
	} else {
	//$('.testhomediv-hover').addClass('jQueryReady');
	$('.testhomediv').hover(function(){
		    $(".testhomediv-hover", this).stop().addClass('jQueryReady').fadeTo("fast", 0.95);
		    $(".testhomediv-hover-span", this).stop().addClass('jQueryReady').fadeTo("fast", 0.95);
		
		}, function() {
		    $(".testhomediv-hover", this).stop().fadeTo("fast", 0);
		    $(".testhomediv-hover-span", this).stop().fadeTo("fast", 0);
		
		});
	}
});

