//wyświetlenie salonów wybranych w kraju
function wyswietl_salony_kraj(kraj)
{
$('#tresc_strony .table_salony').each(function()
	{
	tab=$(this).attr('title').split('|');
	if(tab[0].toLowerCase()==kraj.toLowerCase()) $(this).fadeIn(600); else $(this).fadeOut(600);
	});
}
//wyświetlenie salonów wybranych w województwie
function wyswietl_salony(woj)
{
$('#tresc_strony .table_salony').each(function()
	{
	tab=$(this).attr('title').split('|');
	if(tab[0].toLowerCase()=='polska' && tab[1].toLowerCase()==woj.toLowerCase()) $(this).show(); else $(this).hide();
	});
}
//zdarzenia
$(document).ready(function()
	{
	$('#tresc_strony #wojewodztwo').change(function()	{wyswietl_salony($(this).val());});
	$('#tresc_strony #kraj').change(function()	{wyswietl_salony_kraj($(this).val());});
	$('#tresc_strony #polska area').click(function()	{wyswietl_salony($(this).attr('alt'));});
	$('#tresc_strony [name="formularz"]').click(function() {$('#tresc_strony #formularz_salon').css('top',$(document).scrollTop()+50+'px').fadeIn(400);return false;});
	$('#tresc_strony #formularz_salon .iks').click(function() {$('#tresc_strony #formularz_salon').fadeOut(400);return false;});
	});



