$(document).ready(function() { 
	$("#lgn_usr").focus(function () {
		if( $(this).val() == "El. paštas" ) {
			$(this).val("");
		}
	});
	$("#lgn_usr").blur(function () {
		if( !$(this).val() ) {
			$(this).val("El. paštas");
		}
	});
	
	$("#lgn_pwd").focus(function () {
		if( $(this).val() == "12345" ) {
			$(this).val("");
		}
	});
	$("#lgn_pwd").blur(function () {
		if( !$(this).val() ) {
			$(this).val("12345");
		}
	});
	
	$("#newsletter_input").focus(function () {
		if( $(this).val() == "El. paštas" ) {
			$(this).val("");
		}
	});
	$("#newsletter_input").blur(function () {
		if( !$(this).val() ) {
			$(this).val("El. paštas");
		}
	});
	
	$(".next, .reload_link, .remove_link").click(function (e) {
		e.preventDefault();
		
		$(this).parents("form").submit();
		
		if (this.id == "payment_top_next") {
			$("#order_form").submit();
		}
	});
	
});
