function nextSlide($list){
	var $listitems = $list.find('li');
	var $current = $list.find('li:visible');
	if ($listitems.size()>1){
		if ($current.next().size()) {
			$current.fadeOut(1000).next().fadeIn(1000);
		}
		else {
			$current.fadeOut(1000).siblings(':first').fadeIn(1000);
		}
	}
}
function switchSlide(){
	nextSlide($('#home-featured'));
	nextSlide($('#home-specialoffers'));
}


/* 
-------------------------------------------------------- 
Fire when document is ready...
-------------------------------------------------------- 
*/
$(function(){
	
	// clear default message for search box and newsletter subscription...
	var $obj = $('#keywords, #newsletter-signup');
	if ($obj.size()>0) {
		$obj.focus(function(){
			var $el = $(this);
			if ($el.val()==$el.attr('alt')) {
				$el.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');
		});
	}

	// special offers & featured
	var $homeSlideshow = $('#home-featured, #home-specialoffers');
	if ($homeSlideshow.size()>0) {
		$homeSlideshow.find('li:gt(0)').hide();
		
		$homeSlideshow.css({position:'relative',height:'270px'});
		$homeSlideshow.find('li').css({position:'absolute'});
	}
	
	/* slide show functionality */
	window.setInterval(switchSlide, 7000);
	
	

	// large image overlay
	$("a[rel]").overlay();
	
	// yacht-left-col
	$('dl>dt.toggle').click(function(){
		$(this).next().toggle();
	})
	.next().hide();
	
});






