function changeCountry() {
	$("#dealer-locator form:first").submit();
}

function openGalleryPopup(e) {
	e.preventDefault();
	window.open(this.href,"window1","menubar=no,width=1003,height=500,toolbar=no");
}

function bookmarkUs(e) {
	e.preventDefault();
	if (document.all) {
		window.external.AddFavorite("http://www.control4.com", "Control4");
	}
	else if (window.sidebar) {
		alert("Press Ctrl D keys to bookmark our site.");
	}
}

$(document).ready(function(){
	$("#country-select").bind("change", changeCountry);
	$("[href=gallery]").bind("click", openGalleryPopup);
	$("#bookmark-us-link").bind("click", bookmarkUs);
});
