jQuery(document).ready(function($){
	$('#mycarousel').jcarousel({
		'scroll': 1
	});
	
	$('#mycarousel li').hover(
		function() {
			$(this).fadeTo('fast', 1.0);
		}, function() {
			$(this).fadeTo('fast', 0.5);
		}
	);
	
	$('.nav_menu li ul').hover(
		function() {
			$(this).parent('li').addClass('active'); 
		}, 
		
		function() {
			$(this).parent('li').removeClass('active');
		}
	);
	
	$(".hero_tabs").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 10000);
	$(".hero_tabs li > a").click(function() {
		$(".hero_tabs").tabs("rotate",0,false);
	});
	
	$('#twitter').jTweetsAnywhere({
		username: '6fusion',
		count: 1,
		showFollowButton: false
	});

	/* $(".logo_container li").mouseover(function() {
		$(this).css({'z-index' : '10'}); 
		$(this).find('img').addClass("hover").stop().animate({
			marginTop: '-85px', 
			marginLeft: '-85px',
			top: '50%',
			width: '170px', 
			left: '50%',
			height: '170px'
		}); 
	});

	$(".logo_container li").mouseout(function() {
		$(this).css({'z-index' : '0'});
		$(this).find('img').removeClass("hover").stop().animate({
			marginTop: '0',
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '62px', 
			height: '62px' 
		});
	}); */
});
