$(document).ready(function () {
	//input#newsletter box text select
	$("#newsletter").focus(function () {
		// Select input field contents
		this.select();
	});
	// forms validate
	$("#contactform").validate();
	$("#newsletterform").validate();
	// alert
	$(".noticeboxfalse").click(function () {
		$(".noticebox").slideUp("fast");
		$(".noticeboxfalse").slideUp("fast");
		$(".noticeboxfail").slideDown("fast");
	});
	//google maps
	$("#mapsbutton2").hide();
	$("#mapsbutton").click(function () {
		$("#mapsbutton2").show();
		$("#mapsbutton").hide();
		$("#googlemaps").html("<div id=\"genmaps\"><a href=\"http://maps.google.com.au/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=91+Phillip+Street++PARRAMATTA+NSW+2150&amp;sll=-33.813164,151.006244&amp;sspn=0.006757,0.009645&amp;ie=UTF8&amp;z=14&amp;iwloc=A&amp;ll=-33.802544,151.010427\">View Larger Map</a><iframe width=\"700\" height=\"550\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com.au/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=91+Phillip+Street++PARRAMATTA+NSW+2150&amp;sll=-33.813164,151.006244&amp;sspn=0.006757,0.009645&amp;ie=UTF8&amp;z=14&amp;iwloc=A&amp;ll=-33.802544,151.010427&amp;output=embed\"></iframe></div>");
	});

	$("#mapsbutton2").click(function () {
		$("#mapsbutton").show();
		$("#mapsbutton2").hide();
		$("#genmaps").hide();
	});

});