$(document).ready(function(){
	$('#carouselblock').show();
	$('#mycarousel').jcarousel();
	$('ul.sf-menu').droppy({speed:100});
	// This will remove the title (showing tooltip in menu)
	$('.page_item a').attr('title','');
	//End
	$('#tabbox').show();
	$('#tabContent>li:gt(0)').hide();
	$('#tabMenu li:first').addClass('active');
	$('#tabbox #tabMenu li').bind('click', function() {
		$('li.active').removeClass('active');
		$(this).addClass('active');
		var target = $('a', this).attr('href');
		$(target).slideDown(400).siblings().slideUp(300);
		return false;
	});
	
});



