﻿$(document).ready(function(){

	$("#searchInput").focus(function () { if(this.value == "Enter search terms") { this.value = ""; } });
	$("#searchInput").blur(function () { if(this.value == "") { this.value = "Enter search terms"; } });
    $(".button").mouseover(function(){
		this.className='buttonOver';
    }).mouseout(function(){
		this.className='button';
    });
});