// JavaScript Document

$(document).ready(function() {
	$('#slide-project').cycle({ 
		fx:     'scrollHorz', 
		prev:   '#prev', 
		next:   '#next', 
		nowrap:  1, 
		speed: 300,
		timeout: 0
	});
	
	
	$("#box-news-home a.tab").click(function () {
		// switch all tabs off
		$("#box-news-home .tab-active").removeClass("tab-active");
		
		// switch this tab on
		$(this).addClass("tab-active").fadeIn(0);
		
		// slide all content up
		$("#box-news-home .content-tab").slideUp(0);
		
		// slide this content up
		var content_show = $(this).attr("rel");
		$("#box-news-home #"+content_show).fadeIn(100);
	});
});
