$(function(){
	reStitch()
	// activate the tabs
	$("#about").hover(
		function(){ downAll(); $("#about").attr('src', '/images/about_ON.gif'); }, 
		function(){ downAll(); }
	);
	$("#shop").hover(
		function(){ downAll(); $("#shop").attr('src', '/images/shop_ON.gif'); $('#shopSubmenu').show(); }, 
		function(){ downAll(); }
	);
	$("#outlets").hover(
		function(){ downAll(); $("#outlets").attr('src', '/images/outlets_ON.gif'); /* $('#outletsSubmenu').show(); */ }, 
		function(){ downAll(); }
	);
	$("#gallery").hover(
		function(){ downAll(); $("#gallery").attr('src', '/images/gallery_ON.gif'); }, 
		function(){ downAll(); }
	);
	$("#news").hover(
		function(){ downAll(); $("#news").attr('src', '/images/news_ON.gif'); }, 
		function(){ downAll(); }
	);
	$("#shopSubmenu").hover(
		function(){ downAll(); $(this).show(); $("#shop").attr('src', '/images/shop_ON.gif'); },
		function(){ downAll(); }
	);
	$("#outletsSubmenu").hover(
		function(){ downAll(); $(this).show(); $("#outlets").attr('src', '/images/outletsON2.gif'); },
		function(){ downAll(); }
	);
	// style submenus
	var images = ['/images/bubbleTopON.png','/images/bubbleTopOFF.png','/images/bubbleTop135ON.png','/images/bubbleTop135OFF.png','/images/bubbleMidON.png','/images/bubbleMidOFF.png','/images/bubbleMid135ON.png','/images/bubbleMid135OFF.png','/images/bubbleBottomON.png','/images/bubbleBottomOFF.png','/images/bubbleBottom135ON.png','/images/bubbleBottom135OFF.png'];
	$(images).each(function(key, value) {
		var img = new Image();
		$(img).attr('src', value).error(function (){ alert('Error preloading image ' . value); });
	});
	$('ul#shopSubmenu li:first-child').css({'background-image':'url("/images/bubbleTop135OFF.png")', height: '28px'});
	$('ul#shopSubmenu li:last-child').css({'background-image':'url("/images/bubbleBottom135OFF.png")', height: '34px'});
	$('ul#shopSubmenu li').hover(function(){ $(this).css({'background-image':'url("/images/bubbleMid135ON.png")'}) },																		  		function(){ $(this).css({'background-image':'url("/images/bubbleMid135OFF.png")'}) });
	$('ul#shopSubmenu li:first-child').hover(function(){ $(this).css({'background-image':'url("/images/bubbleTop135ON.png")'}) },																		  		function(){ $(this).css({'background-image':'url("/images/bubbleTop135OFF.png")'}) });
	$('ul#shopSubmenu li:last-child').hover(function(){ $(this).css({'background-image':'url("/images/bubbleBottom135ON.png")'}) },																		  		function(){ $(this).css({'background-image':'url("/images/bubbleBottom135OFF.png")'}) });
	$('ul#shopSubmenu li:last-child a').css({'bottom':'14px'});
	$('a.popup').click(function(){
		window.open(this.href,this.id,'scrollbars=yes,width=465,height=600')
		return false
	})
	$('#share u')
	.one('click',function(){
		var loc=$(this).position()
		$('#pop').css({top:loc.top-25-$('#pop').height(),left:loc.left+20})
	})
	.click(function(){ $('#pop').slideToggle() })
})
function reStitch(){
	$('#leftStitch, #rightStitch').height( $('#mainBlock').height() - 35)
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features)
	return false
}

