if($.browser.msie && $.browser.version < 8.0)
{
	$("document").ready(function(){
		$(".bigrow > a, .smallrow > a").each(function(){
			$(this).bind("click", function(event){
				location.href = this.href;
			})
		});
	});
}
