//Liddell Dunbar Specific JS
//
function setupMapPop()
{
	$(document).ready(function(){
			
		$(".loc-hook").bind("click", function(e){
			window.open($(this).attr("href"), "map_window", "status=0, toolbar=0, menubar=0, resizeable=0, scrollbars=1, width=540, height=450");
			return false;
	    });			
			
	});
}

function setupComboRefresh()
{
	$(document).ready(function(){
			
		$(".combo-hook").change(function(){
			$("#shopping_cart").submit();
	    });			
			
	});
}