$(document).ready(init);

function init()
{
	// search box
	$("#yourname, #yourname2").focus(function()
		{
			if (this.value=='Your name') this.value='';
		}).blur(function()
		{
			if (this.value=='') this.value='Your name';
		}
	);
	$("#youremail, #youremail2").focus(function()
		{
			if (this.value=='Your email') this.value='';
		}).blur(function()
		{
			if (this.value=='') this.value='Your email';
		}
	);
	$("#yourmessage").focus(function()
		{
			if (this.value=='Your message') this.value='';
		}).blur(function()
		{
			if (this.value=='') this.value='Your message';
		}
	);
	// make submit rollovers work on IE
	if ($.browser == "msie") {
		
		$('.button').hover(function() 
		{
			//hover state
			
			$(this).css({"background":"none","color":"#336699","text-decoration":"underline"});
		}, function()
		{
			$(this).css({"background":"#336699","color":"#FFFFFF","text-decoration":"none"});
		});
	}
}