	
$(function() {
		/*$( "#search_field" ).autocomplete({
			source: "/us/st",
			minLength: 2,
		});*/
		
		$(".box_art img").overlay({
		    speed: 0, 
		    closeOnClick: true,
		    top: "15%",
		});
});

function checkSearch(form) {
    if(form.q.value == '') {
        $("#message").html("Please enter a title to search for");
        form.q.focus();
        return false;
    }
    return true;
}

function checkContact(form) {
    if(form.contact_name.value == '') {
        $("#message").html("Please enter your name");
        form.contact_name.focus();
        return false;
    }
    if(form.contact_msg.value == '') {
        $("#message").html("Please enter a message");
        form.contact_msg.focus();
        return false;
    }
    return true;
}

