
function blurAnchors(){
	if(document.getElementsByTagName) {
		var a = document.getElementsByTagName("a");
		//collect all anchors A
		for(var i = 0; i < a.length; i++){
		// mouse onfocus, blur anchors
		a[i].onfocus = function(){this.blur();};
		}
	}
}

	
/* Pokaz ukryj wiecej info
---------------------------------------------------------------- */		
	
function showHide(shID) {
	if (document.getElementById(shID)) {
		if (document.getElementById(shID+'-show').style.display != 'none') {
			document.getElementById(shID+'-show').style.display = 'none';
			document.getElementById(shID).style.display = 'block';
		}
		else {
			document.getElementById(shID+'-show').style.display = 'inline';
			document.getElementById(shID).style.display = 'none';
		}
	}
}
	
window.onload = function() {
	blurAnchors();
	
// Skrypt menu bocznego 

// Developed by Roshan Bhattarai 
//Visit http://roshanbh.com.np for this script and more. 
//This notice MUST stay intact for legal use

	var menu_vert = document.getElementById('menu_vertical');
	if(menu_vert) {
		$(document).ready(function() {
			$("#menu_vertical .menu_head").click(function()
				{
				$(this).css({background:"url(down.png) no-repeat right"} ).next("ul.menu_body").slideToggle(300).siblings("ul.menu_body").slideUp("slow");
						$(this).siblings().css({background:"url(left.png) no-repeat right"});
			});
			
		});
	}
	
	if(document.getElementById('buy')) {
		buy_valid(); 
	}
}




