//FUNKCJE JAVY DO STRONY www.oborniki.com.pl

//Dojście do żądanej strony
function oborniki_goTo( url ) {
	window.location.href = url;
}

//Zmienia kolor menu po lewej po najechaniu myszą
function oborniki_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
// 				tableCellRef.style.backgroundColor = '#69c';
				tableCellRef.style.backgroundColor = '#036';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
// 				tableCellRef.style.backgroundColor = '#036';
 				tableCellRef.style.backgroundColor = '#2b91ff';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

// W przypadku wciśnięcia menu po lewej przechodzi do nowego adresu
function oborniki_navBarClick( tableCellRef, navStyle, url ) {
	oborniki_navBar( tableCellRef, 0, navStyle );
	oborniki_goTo( url );
}


//Obsługuje wyskakujące okienko z fotografią
function oborniki_popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=820,height=700,left = 0,top = 0');");
}



