function getStoreLocator() {
	$("div.popup").hide();
	  $("div#storeLocator").show();

}

function getSpecifications() {
	$("div.popup").hide();
	  $("div#specifications").show();

}

function getRegionSelect() {
	$("div.popup").hide();
	  $("div#regionSelect").show();

}

function getDownloads() {
	$("div.popup").hide();
	  $("div#downloads").show();

}

$(document).ready(function() {


   	$("div.close").click(function() {
		$(this).parent().hide();
	  });
 });


