/**
 * Podpinanie parametru target dla linków
 * rel = blank | top | self | parent
 */
function externalLinks() 
{
	if (!document.getElementsByTagName) 
	{
		return;
	}
	
	var anchors = document.getElementsByTagName("a");
	
	for (var i=0; i<anchors.length; i++) 
	{
		var anchor = anchors[i];
		
		if (anchor.getAttribute("href") && (anchor.getAttribute("rel") == "blank" || anchor.getAttribute("rel") == "top" || anchor.getAttribute("rel") == "self" || anchor.getAttribute("rel") == "parent"))
		{
			anchor.target = "_" + anchor.getAttribute("rel");
		}
	}
}

/*
 * Obsluga elementow ladowanych podczas ladowania sie strony
 */
$(document).ready(function()
{
	/*
	 * Flash Left Top
	 */
    $('#flash').flash(
    	{ src: '/theme/img/flash.swf', 
    	  width: 360, 
    	  height: 103 },
    	{ version: '9' }
    );
    
	/*
	 * Obsluga wysokosci strony
	 */
	if($(document).height() < $("#wrap-content").height()+350)
	{
		$("html").css("height", 		$("#wrap-content").height()+350);
    	$("body").css("height", 		$("#wrap-content").height()+350);
    	$("#wrap-left").css("height", 	$("#wrap-content").height()+350);
    	$("#wrap-right").css("height", 	$("#wrap-content").height()+350);
    }
});

/*
 * Obsluga drukowania
 */
function PagePrint(url)
{
	noweOkno = window.open(url, 'okienko', 'menubar=no, toolbar=no, location=no, scrollbars=yes, resizable=no, status=no, width=570, height=500')
}

/*
 * Obsluga galerii zdjec
 */
//$(function() 
//{
//	$('#foto-content a').lightBox();
//});
