// JavaScript Document

$(document).ready(function() {

	// =================
	// NAVIGATION CODE
	// =================

	var current_nav_id = null;
	var subnav_over = false;

	$("div.navitem").mouseover(function() {
		var nav_id = $(this).attr('class').slice(-4);
		var x = $(this).offset().left;
		var w = $(this).width();
		$("div.navitem").removeClass('active');
		$(this).addClass('active');
		
		if(nav_id != 'nav1')
			{
			if(nav_id == 'nav6' || nav_id == 'nav7')
				$('#' + nav_id + '').css("left",(x + w - $('#' + nav_id + '').width()) + "px");
			else				
				$('#' + nav_id + '').css("left",x + "px");
	
			$('.subnav').not('#' + nav_id).css("display","none");
			
			$('#' + nav_id).fadeIn(200);
			subnav_over = true;	
			}
		});
	$("div.navitem").mouseout(function() {
		subnav_over = false;
		current_nav_id = $(this).attr('class').slice(-4);
		window.setTimeout(function() {
			if(!subnav_over)
				{
				$('.subnav').css("display","none");
				//$('#' + current_nav_id).css("display","none");
				//$('#' + current_nav_id).fadeOut(200);
				$("div.navitem").removeClass('active');		
				}
		}, 200);
		});
	$(".subnav").mouseover(function() {
		subnav_over = true;	
		});
	$(".subnav").mouseout(function() {
		subnav_over = false;	
		window.setTimeout(function() {
			if(!subnav_over)
				{
				$('.subnav').css("display","none");
				$('#' + current_nav_id).css("display","none");
				//$('#' + current_nav_id).fadeOut(200);
				}
		}, 200);
		});


	// =================
	// FORM VALIDATION CODE
	// =================
/*

	$("#shopping_cart_content form").validate();

*/
	});

function popuptopicwh(title,topic,w,h,scrollbars)
	{
	window.open('http://gifts.servitedevelopment.org/popup.aspx?title=' + title + '&topic=' + topic,'Popup170','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scrollbars + ',resizable=no,copyhistory=no,width=' + w + ',height=' + h + ',left=0,top=0');
	return (true);
	}

