$(document).ready(function(){
	$('#homePhoto').cycle();
	$('#prodPhoto').cycle();
	
	$('.topNavMenu').hide();
	$('.topNavItem').bind('mouseenter click focusin', function(){
		$('.topNavMenu').not($(this).children('div')).hide();
		$(this).children('div').show();
	});
	$('.topNavItem').bind('mouseleave', function(){
		$(this).children('div').hide();
	});
	$(document).keyup(function() {
		$('.topNavMenu').hide();
	});	
	$('.topNavItem,.topNavMenu').keyup(function(event){
		 event.stopPropagation();
	});
	
	$("a",".popupNavContainer").click(function(){
		var popupCtxt = $(this).parents(".prodPopupDiv");
		$("a",popupCtxt).removeClass("prodLinkActive");
		$(this).addClass("prodLinkActive");
		$("h2",popupCtxt).html($(this).html());
		$(".scroll-pane",popupCtxt).load($(this).attr("href"));
		return false;
	});
});
