//skrypty stylu



function zmienStyl()
{
	var styl = '';
	var kolor = '';
	
	if ($.cookie('styl')) {
		styl = $.cookie('styl');}
	
	styl = (styl == 'white' ? 'lazur' : 'white');
	
	kolor = (styl == 'white' ? '#ffffff' : '#ade4e2');
	
	$.cookie('styl',styl, {path:"/web/"});
	$.cookie('styl',styl, {path:"/"});
		
	$('body').css('background', kolor+' url(/gfx/bgd_top_'+styl+'.jpg) no-repeat center top');
	
	if (styl == 'lazur')
	{
		$('#tab_zawartosc').css('background','url(/gfx/main_bgd_top.jpg) no-repeat center top');
		$('#div_zawartosc').css('background','url(/gfx/main_bgd_center.png) repeat-y');
		$('#div_main_bottom').css('background','url(/gfx/main_bgd_bottom.png) no-repeat center top');
		$('#stopka_div').css({'color':'#54aca9','background-position':'0 -61px'});
		$('.stopka_mail a').css('color','#d01818');
		$('#stopka_dol').css('color','#54aca9');
		$('#stopka_dol a').css('color','#54aca9');
		$('.lista_ile_ofert').css('color','#54aca9');
		$('.oferta_powrot a, .oferta_symbol').css('color','#54aca9');
	}
	else
	{
		$('#div_zawartosc').css('background','none');
		$('#tab_zawartosc').css('background','none');
		$('#div_main_bottom').css('background','none');
		$('#stopka_div').css({'color':'#99927f','background-position':'0 0'});
		$('.stopka_mail a').css('color','#3274ba');
		$('#stopka_dol').css('color','#99927f');
		$('#stopka_dol a').css('color','#99927f');
		$('.lista_ile_ofert').css('color','#99927f');
		$('.oferta_powrot a, .oferta_symbol').css('color','#99927f');
	}	
}

var time_kon = null;
var start = false;

function pokazKontakt(param)
{
	var param1 = param; 
	
	if (param1 == 's')
	{
		$('#sosnowiec').show('slow');
		$('.kon_naw:first').css('background-position','-15 0').next().css('background-position','0 0');
		$('.link_mapa a').attr('href','/web/?page=mapa_sosn');
	}
	else if (param1 == 't')
	{
		$('#sosnowiec').hide('slow');		
		$('.kon_naw:last').css('background-position','-15 0').prev().css('background-position','0 0');
		$('.link_mapa a').attr('href','/web/?page=mapa_tarn');
	}	
}
	




