// Home page Hover Animation
(function ($) {
    $(document).ready(function () {
		
		// Hover Effect
		$("ol#gallery li").hover(function () {
				$(".thumb-meta",this).stop().animate({ bottom: '0px' }, 400);
			},
			function () { 
				$(".thumb-meta",this).stop().animate({ bottom: '-100px' }, 400);
		});

		$("ol#gallery-big li").hover(function () {
				$(".thumb-meta",this).stop().animate({ bottom: '0px' }, 400);
			},
			function () { 
				$(".thumb-meta",this).stop().animate({ bottom: '-180px' }, 400);
		});
		
		
		// Tabs
		$('div#c1').show();
		tabb('c1');
		
		$('#tabdiv a').click(function() {
			
			$('#tabdiv a').removeClass('selected');
			
		    $(document).trigger("ready"); // probably has unintended side-effects!
			
			$(this).addClass('selected');
			id = $(this).attr('title');
			tabb(id);
			
			$('div.showcase').hide();
			$('div#'+id).show();
						
		});
				
	});
})(jQuery);
