jQuery.fn.formclick=function() {
	$(this).find("input:submit,input:reset").css({"border":"1px solid #68BEE3","background-color":"#EEF5F7","padding":"3px 5px 1px 5px","margin-right":"10px"});
	$(this).find("input:text,input:password,textarea").css({"border":"1px solid #8AAEC1","background-color":"#fff","color":"#999","padding":"2px"})
	.each(function(){
        if(this.value == '')
      this.value = this.title;
    })
	.focus(
			function(){$(this).css({"border":"1px solid #68BEE3","background-color":"#EEF5F7"})
			if(this.value == this.title) 
			this.value = '';
				})
	.blur(
			function(){
		   $(this).css({"border":"1px solid #8AAEC1","background-color":"#fff"});
		    if(this.value == '')
            this.value = this.title;
		   });
}
//
$(document).ready(function() {
	// do something here
//$(".proshow").ImageAutoSize(100,90);

$(".keywords").each(function(){
        if(this.value == '')
      this.value = this.title;
    })
	.focus(
			function(){$(this).css({"border":"2px solid #9c0", "border-right":"none"})
			if(this.value == this.title) 
			this.value = '';
				})
	.blur(
			function(){
		   $(this).css({"border":"2px solid #88B1D0", "border-right":"none"});
		    if(this.value == '')
            this.value = this.title;
		   });

$(".prolist li").hover(function(){
					   $(this).css("background-position","0 58px");
					   },function(){
						   $(this).css("background-position","bottom");
					   })

$(".feedback").formclick();

});
