$(document).ready(function() {
	if($(".related-post").length > 0) {
		$(".related-post").corner("10px");
	}
	
	$("#block-footer").corner("top 8px");
	
	$("#search input").focus(function() {
		$(this).attr({value:""});
	});
	
	$("#search input").blur(function() {
		if($(this).val() == "") {
			$(this).attr({value:"Search"});
		}
	});
	
	$(".wp-pagenavi a:last").addClass("last");
	
	$("p.social img").css({ opacity: '0.5' });
	$("p.social img").hover(function() {
		$(this).css({ opacity: '1' });
	},function() {
		$(this).css({ opacity: '0.5' });
	});
	
	
	// stop ie6
	//if ($.browser.msie && ($.browser.version == "6.0")) {
	//	document.location.href = "";
	//}
	
	if($("form#contactform").length > 0) {
		$("form#contactform").append("<input type='hidden' name='block_spam' value='1' />");
	}
});