﻿$(document).ready(function(){
	$('#navi a').hover(function(){
		$(this).children('img').stop().animate({'width':'100%', 'height':'18px', 'top':'30px'}, 400);
	}, function(){
		$(this).children('img').stop().animate({'width':'0', 'height':'0', 'top':'39px'}, 400);
	});
	
	//Social Networking Tabs
	$('#soc_body').css({'height':$('#rss').height()});//Set height, for animation issues
	$('.rss, .facebook, .twitter').click(function(){
		$('.rss, .facebook, .twitter').removeClass('current');//Return tabs to default
		$('#rss, #facebook, #twitter').fadeOut(400);//Hide all content
					
		$('#soc_body').delay(500).animate({'height':$('#'+this.className).height()}, 300);
		
		$('#'+this.className).delay(700).fadeIn(500);//Show content
		$(this).addClass('current');//Highlight tab
	});
	
	//Full size image
	$('.previmg').click(function(){
		
	});
});

