

$(document).ready(function(){
	
	if($("#layer-box h2").text() != "" || $("#layer-box #layer-inside").text() != ""){
		$("#top-layer").show();
	}
	
	$('#search-top #search').bind("keypress",function (e){ 
		
		if (e.which == 13 ) searchSubmit();
		
	});
	
	
	
	 
	
});

function showTop(){
			$('body').css("background","#FFFFFF url(/img/layout/top/big_back.png) no-repeat scroll center 0px");
			$('body').css("margin-top","240px");
			$('.hide-top').hide();
			$('.show-top').show();
			$('.show-top img').attr('src','/img/layout/top/zwin_button.png');
			$('.hide-top').css("top","-240px");
}

function hideTop(){
			$('body').css("background","#FFFFFF url(/img/layout/top/big_back.png) no-repeat scroll center -240px");
			$('body').css("margin-top","0");
			$('.hide-top').show();
			$('.show-top').hide();
			$('.hide-top img').attr('src','/img/layout/top/rowizn_button.png');
			$('.hide-top').css("top","0px");
}

function hideLayer(){
			$("#top-layer").hide();

}


function searchSubmit(){
	var data = $("#search").val();
	data = escape(data);
	
	data = data.replace("%u0142","l");
	data = data.replace("%u0105","a");
	data = data.replace("%u0119","e");
	data = data.replace("%u015B","s");
	data = data.replace("%u017C","z");
	data = data.replace("%u017A","z");
	data = data.replace("%u0144","n");
	data = data.replace("%u0107","c");
	data = data.replace("%F3","o");
	
	data = data.replace("%u0141","l");
	data = data.replace("%u0104","a");
	data = data.replace("%u0118","e");
	data = data.replace("%u015A","s");
	data = data.replace("%u017B","z");
	data = data.replace("%u0179","z");
	data = data.replace("%u0143","n");
	data = data.replace("%u0106","c");
	data = data.replace("%D3","o");
	

	
	location.replace("/szukaj/"+data+"/");
	
}

function searchRekSubmit(){
	var user = $("#rekomendujacy").val();
	var data = $("#haslo").val();
	data = escape(data);
	
	data = data.replace("%u0142","l");
	data = data.replace("%u0105","a");
	data = data.replace("%u0119","e");
	data = data.replace("%u015B","s");
	data = data.replace("%u017C","z");
	data = data.replace("%u017A","z");
	data = data.replace("%u0144","n");
	data = data.replace("%u0107","c");
	data = data.replace("%F3","o");
	
	data = data.replace("%u0141","l");
	data = data.replace("%u0104","a");
	data = data.replace("%u0118","e");
	data = data.replace("%u015A","s");
	data = data.replace("%u017B","z");
	data = data.replace("%u0179","z");
	data = data.replace("%u0143","n");
	data = data.replace("%u0106","c");
	data = data.replace("%D3","o");
	
	if(data == "") {
		
		location.replace("/szukaj/user/"+user+"/");
	}else{
		location.replace("/szukaj/rekomendacje/"+user+"/"+data+"/");
	}	
}

function searchSylSubmit(){
	var user = $("#nazwisko").val();
	var kat = $("#kategoria").val();
	var city = $("#city").val();
	var reg = $("#region").val();
	
	location.replace("/szukaj/sylwetki/"+user+"/"+kat+"/"+reg+"/"+city);
		
}

function searchWizSubmit(){
	var user = $("#nazwa").val();
	var kat = $("#kategoria").val();
	var city = $("#city").val();
	var reg = $("#region").val();

	location.replace("/szukaj/wizytowki/"+user+"/"+kat+"/"+reg+"/"+city);

}


function showError(text){
	$("#layer-box h2").text(text);
	$("#top-layer").show();
	
}

function hideLayer2(){
									$("#top-layer2").hide();

								}

function showWiz(id){
    $("#special").empty();
    $.post('/javas/wiz',{id:id},function(data){
        $("#special").html(data);


    });
}