$(function () {
	
	/*background color on hover
	$("input").hover(function() {
		$(this).animate({ backgroundColor: "#f7f5b2", color: "#888" }, 500);},function() {	
		$(this).animate({ backgroundColor: "#d9403e", color: "#fff" }, 500);});
	*/
	
	//password box
	if ($("input.password").attr("value")==""){
		$("input.password").css("background","#d9403e url(/assets/images/password.gif) top left no-repeat");
$("#recycle input.password").css("background","#3b6a0c url(/assets/images/password-g.gif) top left no-repeat");//custom for weir
$("#sackbags input.password").css("background","#0d5355 url(/assets/images/password-b.gif) top left no-repeat");//custom for weir
			$("input.password").focus(function() {
				$(this).attr("style",null)
				.blur(function(){
				if ($("input.password").attr("value")==""){
					$(this).css("background","#d9403e url(/assets/images/password.gif) top left no-repeat");
$("#recycle input.password").css("background","#3b6a0c url(/assets/images/password-b.gif) top left no-repeat");//custom for weir
$("#sackbags input.password").css("background","#0d5355 url(/assets/images/password-b.gif) top left no-repeat");//custom for weir
				}
			});
		});
	}
	
	//empty input and replace if nothing entered
	$("input").focus(function() {
		val = $(this).attr("value");
		
		$(this).attr("value","")
			   .blur(function(){
								 
			if ($(this).attr("value")==""){
				$(this).attr("value",val);
			}
		});
	});
});