jQuery(document).ready(function(){
	jQuery('#rotate > ul').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 6000);
	jQuery('a.out').bind('click', function() {
		window.open(jQuery(this).attr('href'));
		return false;
	});
	jQuery(document).pngFix();
	jQuery('ul#manufacturers a span').css({"opacity":"0"});
	
	
	jQuery("ul#manufacturers a").hover( function () {
		jQuery(this).children('span').stop().fadeTo("fast", ".85");
	}, function () {
		jQuery(this).children('span').stop().fadeTo("fast", ".0");
	});


});