document.write('<style>');
document.write('body#home #content-area div#content div#main-content div#extra div#brand-content table.bt td{cursor:pointer;}');
document.write('</style>');
$(function() {
	var $brandTable = $('#brand-content .bt');
	$('td',$brandTable).click(function(){
		if($('a',this).attr('class') == 'blank'){
			window.open($('a',this).attr('href'),'');
			return false;
		}
		else{
			location.href = $('a',this).attr('href');
			return false;
		}
	});
/*	$('td',$brandTable).hover(
		function(){
			$(this).addClass('on');
		},
		function(){
			$(this).removeClass('on');
		}
	);*/
});