// JavaScript Document

// script for shadow
var ua = navigator.userAgent.toLowerCase(); 
this.ua= ua;
this.isIE        = ( (ua.indexOf("msie") != -1) && (ua.indexOf("opera") == -1) && (ua.indexOf("webtv") == -1) ); 
this.versionMinor = parseFloat(navigator.appVersion); 
document.write ("<style>")
if (this.isIE && this.versionMinor >= 4) {
	document.write ("#topEdge {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/topEdge.png'); height:28px;}") 
	document.write ("#wrapper {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/wrapper_bcg.png', sizingMethod='scale');}") 
	document.write ("#bottomEdge {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottomEdge.png'); height:28px;}")
	document.write (".wiecej_arrow {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/wiecej_arrow.png'); height:8px; width:6px}")	
	
	document.write ("#topEdge_interior {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/topEdge_interior.png'); height:28px;}") 
	document.write ("#bottomEdge_interior {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottomEdge_interior.png'); height:28px;}")
}	
else{
	document.write ("#topEdge { background-image:url(images/topEdge.png); height:28px;}") 
	document.write ("#wrapper { background-image:url(images/wrapper_bcg.png); background-repeat: repeat-y;}") 
	document.write ("#bottomEdge { background-image:url(images/bottomEdge.png); height:28px;}") 
	document.write (".wiecej_arrow { background-image:url(images/wiecej_arrow.png); height:8px; width:6px;}") 	
	
	document.write ("#topEdge_interior { background-image:url(images/topEdge_interior.png); height:28px;}") 
	document.write ("#bottomEdge_interior { background-image:url(images/bottomEdge_interior.png); height:28px;}") 	

}	
document.write ("</style>")
// ------------------------------



