$(document).ready(function()
{
	$("div.banner").corner("round 10px");
	$("div.banner_back").corner("round 10px");
	$("div.header").corner("top 35px");
	$("div.tabs").corner("top 15px");
	$("div.content").corner("12px");
	$("center.inner").corner("12px");
	$("div.frame").corner("10px");
	$("div.title").corner("top 10px");
	$("div.info").corner("bottom 10px");
	$("div.footer").corner("bottom 10px");
	$("p.quote").corner("20px");

	var id = window.location.pathname;
	if(id == "/"){
		id = "index.php"
	}
	$('.tabs > .tabsx > a[href$="'+id+'"]').attr('class', 'tab tabsel');


});

function menuClick()
{
	return false;
}


function verify(){

    if(document.forms[0].name_field.value==""){

        alert("Please enter a name.");

        return false;

    }else if(document.forms[0].email_field.value==""){

        alert("Please enter an email address.");

        return false;	

	}else{

		alert("Thank you for your request!  We will be contacting you shortly! ");

        return true;

    }

}


