$(function() {
	
	/*
	http://docs.jquery.com/Utilities/jQuery.support
	all ies (currently up to ie8) have problems (really ie, really?) with transparents pngs and opacty, so take away transitions for it
	*/
	if (jQuery.support.cssFloat) { $('#tab-container').tabs( { fx: { opacity: 'toggle' } }); }
	else { $('#tab-container').tabs(); }
	
	$('#tab-container').tabs('rotate', 8000, false);
	
	var $summaryTabs = $('#tab-container').tabs();
	
	$(".transparent-summary").bind('mouseover', function(e) {
		$summaryTabs.tabs('rotate', null);
	});
	$(".transparent-summary").bind('mouseout', function(e) {
		$summaryTabs.tabs('rotate', 8000, false)
	});
});

$(document).ready(function() {
 
	$('.transparent-summary').click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	$('.transparent-summary').mouseover(function() {
		$(this).css({'cursor' : 'pointer'});
	});

});
