$(document).ready(function() {

	// porfolio slider
	
    $('#mycarousel').jcarousel({
        auto: 3,
        wrap: 'circular',
        scroll: 1,
        animation: 'fast'
    });
    
    $("#mycarousel a").bind("mouseenter",function(){
      $(this).next("span").fadeIn('fast');
    }).bind("mouseleave",function(){
      $(this).next("span").hide();
    });

    // Colors
    
    $("a.white").click(function(){
		$("body").css({backgroundColor : "#ffffff"});
	});
	$("a.pink").click(function(){
		$("body").css({backgroundColor : "#bf3535"});
	});
	$("a.yellow").click(function(){
		$("body").css({backgroundColor : "#f2efbc"});
	});
	$("a.green").click(function(){
		$("body").css({backgroundColor : "#ecf248"});
	});
	$("a.grey").click(function(){
		$("body").css({backgroundColor : "#f265a7"});
	});
	$("a.red").click(function(){
		$("body").css({backgroundColor : "#f2c4cf"});
	});
	$("a.light-blue").click(function(){
		$("body").css({backgroundColor : "#b4dfff"});
	});
	$("a.violet").click(function(){
		$("body").css({backgroundColor : "#8bbf1c"});
	});
	$("a.brown").click(function(){
		$("body").css({backgroundColor : "#9873dc"});
	});
	$("a.fucsia").click(function(){
		$("body").css({backgroundColor : "#da1a7d"});
	});

});