$(document).ready(function(){


	$.preloadCssImages();


	$('a[@rel$="external"]').click(function(){
		this.target = "_blank";
	});


	$('#slideshow').cycle({
		fx: 'fade',
		timeout: 4000,
		height: '276px'	
	});


	$('#closetshow').cycle({
		fx: 'fade',
		timeout: 4000,
		height: '200px',
		after: hiLiteNav	
	});


	if ( $('#closetshow').length > 0 ) 
	{
		$('#subnav ul li').eq(0).addClass("selected");
	}



	
	if( $('#productimage a').length > 1 ) 
	{
		$('#productimage').cycle({
			fx: 'fade',
			timeout: 4000,
			pause: 1
			
		});

	}


});



function hiLiteNav()
{
	var index = $(this).parent().find("li").index(this); 

	$('#subnav ul li').removeClass("selected");
	$('#subnav ul li').eq(index).addClass("selected");	
}


