$(document).ready(function(){
						   
	$("a.subscribe").click(function(){
		$("#submit").animate({ color: "#cc0000" }, 1000)
		.animate({ color: "#ffffff" }, 1000)
		.animate({ color: "#cc0000" }, 1000)
		.animate({ color: "#ffffff" }, 1000);
		
		$("#email").animate({ color: "#cc0000" }, 1000)
		.animate({ color: "#000000" }, 1000)
		.animate({ color: "#cc0000" }, 1000)
		.animate({ color: "#000000" }, 1000);
	});

	//news
	$('#newscarousel').carousel({ dispItems: 3 });

	//artstore
	jQuery.each($("ul.artstore li a"),function() {
		$(this).click(function(){
			$('ul.artstore li a').removeClass('active');
			$(this).addClass('active');
			id = $(this).attr('id');
			$('.tab').hide();
			$('#tab-'+id).slideDown(800);
			$.scrollTo('#tab-'+id, 700);
			return false;
		});
	});
	$('#tab-fkdl').slideDown(800);
	$('ul.artstore li a#fkdl').addClass('active');
	
});
