function google_map_load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(52.49288, -0.657345), 20);
		map.addControl(new GLargeMapControl());
		map.addControl(new GScaleControl());
		map.setZoom(14);
		var point = new GLatLng(52.49288, -0.657345);
		var marker = new GMarker(point);
		map.addOverlay(marker);
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml("<p class='mid'><strong>Interiors 1900</strong><br />Office hours:<br />8.30am – 5.30am (UK time) Monday to Friday<br />Telephone: (+44) 01536 445000<br />Fax: (+44) 01536 445004<br />Email: <a href='mailto:sales@interiors1900.co.uk'>sales@interiors1900.co.uk</a></p>");
		});
    }
}

$(document).ready(function(){

	if($.browser.msie) $("#shadow").remove();

	$("div.item p").hide();
	$("h2.help").click(function(){
		$("h2.help_current").not($(this)).siblings("p").hide();
		$("h2.help").not($(this)).removeClass("help_current").addClass("help");
		$(this).removeClass("help").addClass("help_current");
		$(this).siblings("p").show("slow");
	});

	$("#keyword").click(function(){
		if($(this).val() == 'Enter keyword') $(this).val("");
	});

	$("#keyword").blur(function(){
		if($(this).val() == '') $(this).val("Enter keyword");
	});

	$(".delete").click(function(){
		if(confirm("Are you sure you want to remove it?")) return true;
		else return false;
	});

	$("select#product_select").change(function(){
		$(document).window.location = $(this).val();
	});

	if($("#show_request").val() == 1){
		$("#request").show();
	}

	$(".catalogue_link").click(function(){
		$("#request").show("slow");
		return false;
	});

	$(".close_request").click(function(){
		$("#request").fadeOut("slow");
		return false;
	});
	
	$('#home_picture').cycle({
		fx: 'fade',
		speed: 1000
	});

});