jQuery(document).ready(function(){
	jQuery("li#HOME").click(function(){
		window.location='/index.php';
	});
	jQuery("li#OFERTA").click(function(){
		window.location='/oferta.php';
	});
	jQuery("li#FIRMA").click(function(){
		window.location='/o_nas.php';
	});
	jQuery("li#KONTAKT").click(function(){
		window.location='/kontakt.php';
	});

	jQuery("li#ADMIN").click(function(){
		window.location='/admin/index.php';
	});
	var ulrs = jQuery('ul#menu li');
	ulrs.each(function(){
		jQuery(this).removeClass('menuSelectedItem');
		var id = jQuery(this).attr('id');
		var url = jQuery.cookie('url');
		if(!url) url = 'HOME';
		if(id == url) $(this).addClass('menuSelectedItem');		
	});
	
	var languages = jQuery('ul#languagePanel li');
	languages.each(function(){
		jQuery(this).removeClass('menuSelectedItem');
		var id = jQuery(this).attr('id');
		var lang = jQuery.cookie('jezyk');
		if(!lang) lang = 'pl';
		if(id == lang) $(this).addClass('menuSelectedItem');
	});
	
	languages.click(function() {
		jQuery.cookie('url',null);
		var language = jQuery(this).attr('id');
		window.location = '/index.php?lang='+language;
	});
	
	jQuery( "#counter" ).position({
		of: jQuery( "body" ),
		at: "right bottom",
		my: "center bottom",
		offset: "30 0"
	});		
});



