jQuery(function() {
// OPACITY OF BUTTON SET TO 50%
jQuery(".clsProductImages div h4").css("opacity","0");





 
// ON MOUSE OVER
jQuery(".clsProductImages div h4").hover(function () {
 
// SET OPACITY TO 100%
jQuery(this).stop().animate({
opacity: 0.85
}, "500");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
jQuery(this).stop().animate({
opacity: 0
}, "500");
});
});


// Stretch background to document height.
jQuery(function() {
	// strech short pages to full height, keep footer at bottom
	var documentheight = jQuery(document).height();
	
	jQuery("div.clsWindow").css({height: documentheight + "px"});
	

});





