/* 
-------------------------------------------------------- 
Fire when document is ready...
-------------------------------------------------------- 
*/
$(function(){
	
//	$.getScript("js/jquery.jcalendar.js");	
	
	var obj = null;

	// expand navigation...
	obj = $('ul#left-navigation ul');
	if (obj.size()>0) {
		obj.slideDown(1500);
	}
	
	// clear default message for search box...
	obj = $('#keywords');
	if (obj.size()>0) {
		obj.focus(function(){
			if (obj.val()==obj.attr('alt')) {
				$(this).val('');
			}
		});
	}
	// tiger stripe tables...
	$('table.tiger-stripe tr:even').addClass('alt');
	
	// shop...
	obj = $('div.sub-category');
	if (obj.size()>0) {
		$(obj).hover(function(){
			$(this).addClass('sub-category-hover');
		},
		function(){
			$(this).removeClass('sub-category-hover');
		});
	}	
	
	// popup image...
	oLargeImageLink = $('a.image-enlarge');
	if (oLargeImageLink.size()) {
		$('body').prepend('<div id="popup"><img src="' + oLargeImageLink.attr('href') + '" alt="popup image" /><br /><img src="images/global/button-close.gif" alt="Close" style="border:none;" /><\/div>');
		
		$('#popup').hide();
		
		oLargeImageLink.click(function(){
			$('#popup')
				.fadeIn('normal', function(){
					if ($.browser.msie) {
						$('form select').hide();
					}
				})
				.click(function(){
					$(this).fadeOut('normal', function(){
						if ($.browser.msie) {
							$('form select').show();
						}
					});
					return false;
				});
			return false;
		});
	}
	
});


/*
-------------------------------------------------------- 
KeepSessionAlive [v2.0]
-------------------------------------------------------- 
*/
function KeepSessionAlive() {
	// prevent session from server timeout...
	//var sTimeoutUrl = '<<domain>>w_Timeout.Home';
	$.get(sTimeoutUrl);
	KeepSessionAliveTimer = setTimeout("KeepSessionAlive()", 10 * 60000);
}


