$(function()
{
	
	
	// external links in new window (anything starting with http)
	$('a[@href^=http:]').click(function()
	{
		window.open($(this).attr('href'));
		return false;
	});
	

	
	
	
	// navigation
	$('#nav ul li')
	.mouseover(function()
	{
		$(this).addClass('navigationHover');
		$('ul', $(this)).show();
	})
	.mouseout(function()
	{
		$(this).removeClass('navigationHover');
		$('ul', $(this)).hide();
	});
	

	
	

	// homepage featured products slides
	$('#productImageSlideWrap').cycle(
	{
		fx: 'scrollLeft', 
		speed: 2000, 
		timeout: 2000, 
		pause: 1 
	});

	// home page slides
	$('#somethingUnique').cycle();
	
	
	
	// active tab on product detail page
	$('#detailNav ul li a:first').addClass('activeTab');
	


	
});
