$(function(){
	
    /* Rotator Promotions */
	$('#loopedslider').loopedSlider({
		addPagination: true,
		autoStart: 5000
	});
	/* End Rotator Promotions */

	/* Player Youtube */
	
	$('.wrap-video form').submit(function(){
		$('#player').youTubeEmbed($('#url').val());
		$('#url').val('');
		return false;
	});
	/* End Player Youtube */
	
    /* Gallery Home */

	/* End Gallery Home */
	
	/* Effect ShowCases */
	$.easing.backout = function(x, t, b, c, d){
		var s=1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	};
	
	$('#screen').scrollShow({
		view:'#view',
		content:'#images',
		easing:'backout',
		wrappers:'link,crop',
		navigators:'a[id]',
		navigationMode:'sr',
		circular:true,
		start:0
	});
	/* End Effect ShowCases */
	
	/* Abas Calendar */
	$('.date-wrap-2, .date-wrap-3, .date-wrap-4').hide();
	
	$("#content-tab .tab-ul li a").click(function(){
		var self = $(this);
		var rel = self.attr("rel");
		
		$("#tab-wrap>div").each(function(){
			$(this).fadeOut('fast');
		});
		
		$("#content-tab .tab-ul li a").removeClass("current");
		self.addClass("current");
		
		setTimeout(function(){
			$("." + rel).fadeIn('slow', function(){
			});
		},300);
	});
});
