/*wymaga event.js*/
//-----------------------------------------------------------------------------
/*Wszystkie linki z rel="external" otwierają się w nowym oknie/zakładce */
/*function externalLinks()
{
	var external = 'external';
	
	if (!document.getElementsByTagName){ return; }
	var anchors = document.getElementsByTagName('a');

	// loop through all anchor tags
	for (var i=0; i<anchors.length; i++){
		var anchor = anchors[i];
		
		var relAttribute = String(anchor.getAttribute('rel'));		
		if( anchor.getAttribute('href') && relAttribute.toLowerCase().match(external) ){
			anchor.target = "_blank"; 
		}	
	}		
}
//-----------------------------------------------------------------------------
function front_init(){
	externalLinks();
}
hookEvent(window,'load',front_init);*/

function showMenu( id ) {
	$( id ).show();
	//alert( $( id ).css( 'display' ) );
}

function closeMenu( id ) {
	$( id ).hide();//css("display", "none");
}

function showTr( path ) {
	$.nyroModalManual({url: path, endShowContent: function(){ $('#flash_bohomolca').hide() } , endRemove: function() { $('#flash_bohomolca').show(); } });
}

function showImg( ob ) {
	$.nyroModalManual({url: $(ob).attr("src") , endShowContent: function(){ $('#flash_bohomolca').hide() } , endRemove: function() { $('#flash_bohomolca').show(); } });
}

function chl( lnk ) {
	window.location.href = lnk ;
}
