$(document).ready(function(){
	function tabHeight(){
		ph = $('#portlets').height();
		at = $('div.activeTab div.show').height();
		if(ph > at){
			ph = (ph - 81)+'px';
			$('div.activeTab div.show').css('height', ph);
		}
	}

	//Activates #content-tabs

	$('#hometabs').tabs();
	
	//tabHeight();

	if($.hasFlashPlayer == true){
		$('#flash').flash({ swf: 'flash/home_flash.swf', height: 236, width:920, params: { wmode:'transparent'}, flashvars:{txtPath:'/site/flashcontrol/'}});  
	}else{
		//$("div#flash img").css("display", "block");
		//<img src="/cssimages/home/home2.jpg" alt="" />
		$("#flash").html("<img src=\"/cssimages/home/home2.jpg\" alt=\"\" />");
	}

	$('ul.activeTab li a').click(function(){
		//tabHeight();
	});
});