$(document).ready(function(){
	$('.comments').fadeTo(100, 0.2); 
	$('.comments').hover(function(){
		$(this).fadeTo('fast', 1.0); 
	},
	function(){
		$(this).fadeTo('fast', 1.0); 
	});
	
	$('input#mce-EMAIL').example('Email Address');
	$('input#s').example('Search');
	$('input#gosearch').click(function() {
		if ($('input#s') != "Search") {
			window.location = '/search/'+$('input#s').val();
			return false;
		} else if ($('input#s') != "") {
			window.location = '/search/'+$('input#s').val();
			return false;
		} else {
			return false;
		}
	});


	//IE pseudo-selectors workaround
	if ($.browser.msie) {
		$('head').append('<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />');
		$('input[type="submit"]').addClass('submit');
		$('input[type="text"]').addClass('text');
		$(':last-child').addClass('last-child');
		$(':first-child').addClass('first-child');
		$(':nth-child(3n+3)').addClass('nth-child3nplus3');
		$(':nth-child(3n)').addClass('nth-child3nplus3');
	}
});
