$(document).ready(function () {	
	$('input[name="q"]').focus(function () {
		$(this).val('');
	});	
	cssdropdown.startchrome("topNav");
	$('input[name=Email]').focus(function () {
    	$(this).val('');
    });
	$('input[name=First_Name]').focus(function () {
    	$(this).val('');
    });
	$('input[name=Last_Name]').focus(function () {
    	$(this).val('');
    });
	$('input[name=Zip]').focus(function () {
    	$(this).val('');
    });
	
	/*$('.subscribe').submit(function () {
		//var email = $(this).find('.mailingTxt').val();
		$.ajax({
			type: "POST",
			url: "http://action.pakistanrelations.org/t/6423/signUp.jsp?key=1094",
	    	data: $(this).serialize(),
	    	dataType: "json",
	    	success: function(response) {
	    		if (response['success'] == false) {
	    			alert(response['message']);    				
	    		} else {
	    			$('input[name=email]').val('Thank you.');
	    			$('input[name=firstname]').val('');
	    			$('input[name=lastname]').val('');
	    			$('input[name=zipcode]').val('');
	    		}
	    	},
	    	error: function() {
	    		alert("error sending ajax data!");
	    	}
	    });
		
		return false;
	});*/
});
