function NewStyle()
{
	var css_url = 'http://www.matproject.com/build/html/';
	var img = 'BN';
	var h = null;
	var link = null;
	var css = '';
	var css2 = '';
	var link2 = null;
	
	this.get = function(){
		return css;
	}
	
	this.get2 = function(){
		return css2;
	}
	
	this.set = function(url){
		if (url==2 || url==4) {
			css = css_url + 'style2.css';
			if (url==4) css2 = css_url + 'retouch2.css';
			h = 20;
			img_path = 'gfx2';
			changeCSSrequest(2);
		} else {
			css = css_url + 'style.css';
			if (url==3) css2 = css_url + 'retouch.css';
			img_path = 'gfx';
			h = 30;
			changeCSSrequest(1);
		}
		//css = url;
		this.show();
	}
	
	this.show = function(){
		var url = this.get();
		var url2 = this.get2();
		//alert(url);
		//alert(url2);
		if (url != ''){
			if (link == null){
					if (document.getElementsByTagName('link')[0].getAttribute('rel').toLowerCase() == 'stylesheet'){
						link = document.getElementsByTagName('link')[0];
					}
			}
			link.setAttribute('href', url);
			
			document.getElementById(img).innerHTML = '<a href="/" title="Home"><img src="'+img_path+'/home.gif" alt="Home" height="'+h+'" /></a>'
			+'<a href="/Kontakt" title="Kontakt"><img src="'+img_path+'/contact.gif" alt="Kontakt" height="'+h+'" /></a>'
			+'<a href="/Mapa_strony" title="Mapa strony"><img src="'+img_path+'/sitemap.gif" alt="Mapa strony" height="'+h+'" /></a>';
			
			
		}
		if (url2 != ''){
			if (link2 == null){
					if (document.getElementsByTagName('link')[1].getAttribute('rel').toLowerCase() == 'stylesheet'){
						link2 = document.getElementsByTagName('link')[1];
					}
			}
			link2.setAttribute('href', url2);
		}
	}
	
	this.show();
}

var changeCSS = new NewStyle();
