$b=$.browser;

$(function(){
	
	if (($b.msie && $b.version < 7) ||
		($b.safari && $b.version < 2) ||
		($b.mozilla && $b.version < 2) ||
		($b.opera && $b.version < 8))
	{ $("#recommendation .browser, #lmessages").show(); } 
	else { $("#recommendation h4, #lmessages").hide(); }

	brlink_defaults = {zIndex: 9, height: "40px", width: "156px", left: "0", top: "0", borderWidth: "1px"};
	brlink_anim = {height: "46px", width: "164px", borderWidth: "1px", left: "-4px", top: "-3px"};
	
	$("#recommendation .script").remove();
	$('#brands a')
		.filterIE6out()
			.hover(	function(){
						$("#brands a").not(this).css(brlink_defaults).stop();
						$(this)
						.css({zIndex: 10}).stop()
						.animate(brlink_anim, 150, "easeInQuad");
					}, function() {
						$(this).stop().css(brlink_defaults)
					})
		.end()
		.click(function(e){
			if (window.open(this.href)) {
				e.preventDefault();
			} else {
				if (window.location(this.href))
					e.preventDefault(); 
			}
		})
});

