$(document).ready(function () {

/* Forms */
// Showing and hiding text when a user clicks in a field
$('#s').val('Enter keywords');

$("#s").click(function() {
	if ($(this).val() == 'Enter keywords') {
		$(this).val('');
		$(this).css('color', '#393c45');
	}
});

$("#s").blur(function() {
	if ($(this).val() === '') {
		$(this).val('Enter keywords');
		$(this).css('color', '#cad5e0');
	}
});

$("#google_reader_email").click(function() {
	if ($(this).val() == 'Enter your email address') {
		$(this).val('');
		$(this).css('color', '#393c45');
	}
});

$("#google_reader_email").blur(function() {
	if ($(this).val() === '') {
		$(this).val('Enter your email address');
		$(this).css('color', '#cad5e0');
	}
});
 

});
