$(document).ready(function(){
	
// DIV HOVER FOR IE7 ==>
	$(".checkhover").mouseover(function(){
		$(this).addClass("hover");
	}).mouseout(function(){
		$(this).removeClass("hover");
	});
// <<==
});
