$(document).ready(function(){
	// Remove and repopulate the search field's default value when clicked into
	$("form.search input.input-text").focus(function() { 
		if ( $(this).val() == "Enter search...") {
			$(this).val("");
		}
	});
	$("form.search input.input-text").blur(function() { 
		if ( $(this).val() == "") {
			$(this).val("Enter search...");
		}
	});
});

$(window).load(function() {
	$('.post img').each(function() {
		if ($(this).width() > 510) {
			$(this).width(510);
		}
	});
});