
jQuery(document).ready(function($){

	// CLEAR SEARCH BOX
	$("#s")
		.val("To search, type and hit enter")
		.css("color", "#999")
		.focus(function(){
			$(this).css("color", "#666");
			if ($(this).val() == "To search, type and hit enter") {
				$(this).val("");
			}
		})
		.blur(function(){
			if ($(this).val() == "") {
				$(this).val("To search, type and hit enter");
			}
	});
		
	// Email this popup window
    $('a.social-button-email-link').click(function(){
        window.open(
        	this.href, 
			'Email this!', 
			'width=600, height=650'
		);
        return false;
    });

});

