$(document).ready(function() {
    $('#top_img').cycle({
		fx: 		'fade',
		timeout:	6000,
		pager: 		'#nav'
	});
	$("#price .price").hover(function() {
		jQuery(this).find("span").css("font-weight","bold").css("color","#899800").css("border-bottom","1px solid #899800");
	}, function() {
		jQuery(this).find("span").css("font-weight","normal").css("color","#444444").css("border-bottom","1px solid #fff");
	});
	var olds = Array();
	$("#form input").bind("click focus", function(){
		var name = $(this).attr('name');
		if(this.value!='')
		{
			if(olds[name]==undefined)
			{
				olds[name]=this.value;
				this.value='';
			}else
			{
				if(olds[name]==this.value)this.value='';
			}
		}else
		{
			if(olds[name]==undefined)olds[name]='';
		}
	});
	$("#form input").bind("blur",function() {
		var name = $(this).attr('name');
		if(olds[name]!='')
		{
			if(this.value=='')this.value =olds[name];
		}
	});
});

