﻿
$(document).ready(function() {

	$("#searchfield").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

	$("#loginbtn").click(function() {
        window.location.href = "login.php";
    }); 



 });

