$(document).ready(function(){
	$("#menu li a").hover(
		function () {
		  $(this).stop().animate({"color": "#fff"}, "slow");
		}, function () {
		    $(this).stop().animate({"color": "#787878"}, "slow");
		}
	);
	
	$("a[href$=.jpg]").lightBox();
	$("a[href$=.gif]").lightBox();
	$("a[href$=.png]").lightBox();


	$('#commentform input, #searchform input, #comment').each(function () {
	 	if ($(this).val() == '') {
	  		$(this).val($(this).attr('defaultvalue'));
		}
		
		}).focus(function () {
	  		$(this).removeClass('inputerror');
	  		if ($(this).val() == $(this).attr('defaultvalue')) {
	  		$(this).val('');
		}
		
		}).blur(function () {
	  		if ($(this).val() == '') {
	  		$(this).val($(this).attr('defaultvalue'));
	  	}
	});

});

