$(document).ready(function () {
	
	$('.submit').click(function (e) {
		e.preventDefault();
		//console.log($(this).parents());
		$(this).parents('form').submit();
	});
	
	$('#payment_submit').click(function() {
		$('#payment_form').submit();
	});
	
	$('#searchparam, #newsletter_input, .blur').focus(function() {
		$(this).val('');
	});
});
function dirtypop(city)
{
  var generator=window.open('','name','height=400,width=700');
  
  generator.document.write('<html><head><title>Popup</title>');
  generator.document.write('<style type="text/css">html{padding:0;margin:0;} body{padding:0;margin:0;}</style>');
  generator.document.write('</head><body>');
 
	if(city=='klaipeda') {
		generator.document.write("<iframe width='700' height='400' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://dc1.maps.lt/maps/quickmap.html?obj=321849,6177921&s=5000&title=%C5%A0ilut%C4%97s%20pl.%205A&info=Klaip%C4%97da%2C%20Klaip%C4%97dos%20m.%20sav.'></iframe>");
	}
	if(city=='kaunas') {
		generator.document.write("<iframe width='700' height='400' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://dc1.maps.lt/maps/quickmap.html?obj=491048,6085927&s=5000&title=Raudondvario%20pl.%20116%20%2F%20Dubysos%20g.%201&info=Kaunas%2C%20Kauno%20m.%20sav.'></iframe>");
	}
 
  generator.document.write('</body></html>');
  generator.document.close();
}

