jQuery(document).ready( function() {
	$("IMG[id^='prod_tab']").click( function() {
		$("IMG[id^='prod_tab'][id!='"+this.id+"']").removeClass('activeTab');
		$("DIV[id^='prod_tab'][id!='"+this.id+"_content']").hide();
		$('#'+this.id+'_content').show();
		$(this).addClass('activeTab');
		document.location.hash = '#'+this.id.substr(9)
		return false
	} );
	
	/*var maxheight=0, minheight;
	$('.prod_content,.prod_content_PL').each( function() {
		var tmp = $(this).height()
		if (tmp > maxheight) maxheight=tmp
	} );
	minheight=screen.height-250
	if (maxheight<minheight && maxheight>0) minheight=maxheight;  
		if (maxheight > screen.height-190) maxheight = screen.height-190
		$('.prod_content,.prod_content_PL').each( function() {
			var me=$(this);
			var myheight = me.height()
			if (myheight < minheight && myheight>0)
				me.height(minheight)
		} );*/
	
	if (document.location.hash)
		$('#prod_tab_'+document.location.hash.substr(1)).click()
} );

