
function set_koncern_button_text(ipath) {
	img = document.getElementById('koncern_button_image');
	if(img.src.substr(img.src.length-24)=='/navigator_button_en.png') {
		img.src=ipath+"/global_elements/navigator_button_hide_en.png";	
	} else {
		img.src=ipath+"/global_elements/navigator_button_en.png";	
	}
}

function Hide_Product_Pages()
{
	p = document.getElementById('product_p1');
	if(p!=null) {
		// This is the productpage...
		myProduct_1 = new fx.Height('product_p1', {duration: 300}); 
		myProduct_1.hide();	
		myProduct_2 = new fx.Height('product_p2', {duration: 300}); 
		myProduct_2.hide();
		myProduct_3 = new fx.Height('product_p3', {duration: 300}); 
		myProduct_3.hide();	
		myProduct_4 = new fx.Height('product_p4', {duration: 300}); 
		myProduct_4.hide();					
	} 
}
