jQuery(function ($) {

	// Thumbnail hover

	$("#carousel li a.image img").before('<span class="imghover"></span>');
	$("#carousel li a.youtube img, #carousel li a.vimeo img").before('<span class="vidhover"></span>');

	$('#carousel li a span').css('opacity', '0').css('display', 'block');
	
	$("#carousel li a").hover(
		function () {
			$(this).find('.imghover, .vidhover').stop().fadeTo('slow', .5); }, 
		function () {
			$('.imghover, .vidhover').stop().fadeOut('slow', 0);
	});
	
    // jCarousel slider
	
	$('#carousel').jcarousel();
	
	// Menu tooltip
	
	$('#menu a').poshytip({
		className: 'tooltip',
		showTimeout: 5,
		hideAniDuration: 0,		
		alignTo: 'target',
		alignX: 'center',
		offsetY: 7,
		allowTipHover: false,
		fade: true,
		slide: true		
	});
	
	// Menu and footer scroll
	
	$('#menu a').click(function(e) {
		e.preventDefault();
		$.scrollTo($(this).attr('href'), 750);		
	});
	
	$('a#btn_top').click(function(e) {
		e.preventDefault();
		$.scrollTo($(this).attr('href'), 750);		
	});
	
	// Latest Tweets
	
	$("#tweet").tweet({
        username: "artellectual",
        join_text: "auto",
        avatar_size: 0,
        count: 5,
        auto_join_text_default: "", 
        auto_join_text_ed: "",
        auto_join_text_ing: "",
        auto_join_text_reply: "",
        auto_join_text_url: "",
        loading_text: "loading tweets..."
    });
	
});
