// $(document).ready( tabs_init );

function tabs_init()
{
	$("li.tab").click( tabs_toggle(this) ); 
}

function tabs_toggle( el )
{
	var classes = $(el).attr("class")[0].split(" ");
	

	
	$("div.tabcontent").hide();
	$(el).addClass( "selected" );
}

function yka_fullscreen( content ) 
{
	var fs;
	
	if( $.browser.msie )  
	{
		if( new Number($.browser.version) >= 6 )
		{
			fs = window.open( '', '', 'fullscreen=yes, scrollbars=auto, resizable=yes' );
		}
		else
		{
			
		}
	}
	else
	{
		fs = window.open( '', '', 'width=' + (screen.width-5) + ',height=' + (screen.height-30) + ', scrollbars=auto, resizable=yes, ' );				
	}
	
	if( fs==null )
	{
		alert( "Your browser blocked the popup window Yenka.com uses to display this content. Please enable popups for Yenka.com" );
		return false;
	}	
	
	fs.document.write( "<html><body>hello<a href='' onclick='self.close()'>Close</a></body></html>" );
	
	if( window.focus ) 
	{
		fs.focus();
	}
	
	return false;
}