﻿var _redirectToDealerLocator = function() {
	location.href = "/dealer-locator#q=" + $("#searchtext").val();
};

$(function() {
	$.ajaxSetup({
		type: "GET",
		dataType: "json",
		beforeSend: function(xhr) {
			xhr.setRequestHeader("__AjaxRequest", "true");
		}
	});

	if($.browser.msie && ($.browser.version < 7))
		$("#content").prepend("<ul class=\"message-block\"><li>This website does not support your version of Internet Explorer. Items in this website may not display properly. Please <a href=\"http://windows.microsoft.com/en-US/internet-explorer/downloads/ie\" rel=\"external\" title=\"Download Internet Explorer\">download</a> the latest version of <a href=\"http://windows.microsoft.com/en-US/internet-explorer/downloads/ie\" rel=\"external\" title=\"Download Internet Explorer\">Internet Explorer</a> or try another web browser like <a href=\"http://www.mozilla.com/\" rel=\"external\" title=\"Download Firefox\">Firefox</a> or <a href=\"http://www.google.com/chrome\" rel=\"external\" title=\"Download Chrome\">Chrome</a>.</li></ul>");
	if(navigator && navigator.platform && navigator.platform.match(/^(iPad|iPod|iPhone)$/))
		$(".get-flash").remove();

	$("#searchbutton").click(function(e) {
		_redirectToDealerLocator();
		return false;
	});
	$("#searchtext").live("keypress", function(e) {
		if(e.which == 13) {
			_redirectToDealerLocator();
			return false;
		}
		return true;
	}).watermark("watermark", "Zip/Post Code");
    $("a[rel='external']").click(function(e) {
        window.open(this.href);
        return false;
    });
	$("input.readonly, textarea.readonly").keypress(function(e) {
		return false;
	});
});
