
$(document).ready(function(){
	// external Links
	$("a[rel='external']").live("click", function(){
		window.open($(this).attr("href"));
		return false;
	});

	$(".popup").click(function() { 
		myWindow = window.open($(this).attr("href"), "emailPage", "scrollbars=1, width=390, height=400");
					myWindow.focus();
					return false;
				});

	if($(".prettyPhoto").html()){
		$(".prettyPhoto a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook', allowresize: false,showTitle: false});
	}
	

	
	$('#firstName').focus(function(){
		
		if($('#firstName').val() == "First Name" || $('#firstName').val() == "Please enter first name"){
			$('#firstName').val('');
		}
	});
	
	$('#lastName').focus(function(){
		if($('#lastName').val() == "Last Name" || $('#lastName').val() == "Please enter last name"){
			$('#lastName').val('');
		}
	});
	
	$('#mobile').focus(function(){
		if($('#mobile').val() == "Mobile" || $('#mobile').val() == "Please enter mobile number"){
			$('#mobile').val('');
		}
	});

	
	$('#email').focus(function(){
		if($('#email').val() == "Email" || $('#email').val() == "Please enter a valid email address"){
			$('#email').val('');
		}
	});
	
	$('#comment').focus(function(){
		if($('#comment').val() == "Give us your story and nomination."){
			$('#comment').val('');
		}
	});
	
});
