$(document).ready(function() {

	$.featureList(
		$("#tabs li a"),
		$("#output li"), {
			start_item	:	0
		}
	);

	/*
	
	// Alternative

	
	$('#tabs li a').featureList({
		output			:	'#output li',
		start_item		:	1
	});

	*/

});

$(function() {
	$("ul.colums_03 >li:nth-child(3)").addClass("clear-colum");
});

/* carrusel_horizontal */


$(document).ready(function(){ 
	$("ul.xoxo >li").hover(function(){  
		$(".img-cover", this).stop().fadeTo(500, 0.0); // This should set the opacity to 100% on hover  
	},function(){  
		$(".img-cover", this).stop().fadeTo(500, 1.0); // This should set the opacity back to 90% on mouseout  
	});  
});
$(document).ready(function(){ 
	$("ul.xoxo >li").hover(function(){  
		$(".text-xoxo", this).stop().fadeTo(900, 1.0); // This should set the opacity to 100% on hover  
	},function(){  
		$(".text-xoxo", this).stop().fadeTo(500, 0.0); // This should set the opacity back to 90% on mouseout  
	});  
});

$(document).ready(function(){
	$('ul.xoxo >li').hover(function(){
		$(".cover", this).stop().animate({bottom:'-40px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({bottom:'17px'},{queue:false,duration:300});
	});
});

$(function() {
   $('img.click-social, img.closet').click (function () {
		$('.social-network-sli').toggle (1000)
   });
})

$(document).ready(function(){
	$('.box-00').hover(function(){
		$(".image-box", this).stop().animate({top:'-316px'},{queue:false,duration:300});
	}, function() {
		$(".image-box", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
});

$(document).ready(function(){
	$('.box-00').hover(function(){
		$(".text", this).stop().animate({top:'0px'},{queue:false,duration:300});
	}, function() {
		$(".text", this).stop().animate({top:'316px'},{queue:false,duration:300});
	});
});

$(document).ready(function(){
	$('.box-00').hover(function(){
		$(".cover", this).stop().animate({left:'296px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
});
