jQuery(document).ready(function($) {
	
	//Product Tabs
	$('.product-block .tab-links a').click(function(){ 
		var a_href= $(this).attr('href');
		$('.product-block .tab-links a').removeClass('active');
		$(this).addClass('active');
		$('.product-block .tab').each(function(){ 
			var tab_id = '#' + $(this).attr('id');
			if(tab_id == a_href){
				$('.product-block .tab').hide();
				$(this).show();
			}
		 });
		return false; 
	});
	
	//Navigation Dropdown
	$("#navigation ul li").each(function(){ 
		if($('.dd',this).length > 0){
			$(this).addClass('has-dd');
		}
	});
	
	$('#navigation ul li').hover(function(){ 
		$(this).find('.dd').toggle();
		$(this).find('a:eq(0)').toggleClass('hover');
	});
	
	//PNG fix for IE6
	if($.browser.msie && $.browser.version.substr(0,1) == 6){
		DD_belatedPNG.fix('.shell, h1#logo a');
	}


   	$('.carousel').jcarousel();

	
});

