

document.write('<style type="text/css">\n')
document.write('#banner-tab {position:relative;bottom:49px;}\n')
document.write('</style>\n')


$bann = jQuery.noConflict();
$bann(document).ready(function() {
$bann(".tab_content").hide(); //Hide all content
$bann(".tab_content:first").show(); //Activate first tab

	$bann(".lists").mouseover(function(event) {
		$bann(".lists").removeClass("hov"); //Remove any "active" class
		$bann(this).addClass("hov"); //Add "active" class to selected tab
		var cls = $bann(this).attr('id');
		$bann("#bannerhomeContainer_inner > div").hide();
		cls = cls + '-banner';	
		$bann("#bannerhomeContainer_inner div#"+cls).show();
	});
});

