$(document).ready(function(){

	$('img[@src$=.png]').ifixpng();

	$("input[@type=text], input[@type=password], select, textarea").focus(function(){
		$(this).parent().addClass('field-focused');
	});

	$("input[@type=text], input[@type=password], select, textarea").blur(function(){
		$(this).parent().removeClass('field-focused');
	});
	
	$(".confirm-link").click(function(){
		return confirm("Are you sure you wish to remove this "+$(this).attr("rel")+"?");
	});
	
	$("#invite_emails").keyup(function(){
  		var text = document.getElementById('invite_emails').value.replace(/\s+$/g,"") 
  		var split = text.split("\n") 
  		document.getElementById('invite_emails_count').innerHTML = split.length;
	});
	
	$(".back-btn").click(function(){
		if ($(this).attr("rel") != '') {
			window.location = $(this).attr("rel");
		}		
	});
	
	$(".mp3").jmp3();
	
});
