$(document).ready(function() {

	/********************************** TABS **********************************/

	var tabs = $('ul.tabs');

	tabs.each(function(i) {

		// get all tabs
		var tab = $(this).find('> li > a');
		tab.click(function(e) {

			// tab's content -> href
			var contentLocation = $(this).attr('href');

			// if it's not a hash+link dump it
			if(contentLocation.charAt(0)=="#") {

				e.preventDefault();

				//make tab active
				tab.removeClass('active');
				$(this).addClass('active');

				//show tab content and add active class to link
				$(contentLocation).show().addClass('active').siblings().hide().removeClass('active');
				
				
				$('ul.tabs-content > li > img').hide();
				$('ul.tabs-content > li.active > img').fadeIn(1000);

			}
		});
	});
	
	
	/********************************** slide to top *******************************/
	
	$('a[href=#top]').click(function(){
	        $('html, body').animate({scrollTop:0}, 'slow');
	        return false;
	    });		
		
	
	/********************************** LOGO *******************************/	
	
	//$('.logo').hover(function(){
//			 $(this).stop().animate({"opacity": .5}, 'fast');								  
//	});	
//	
//	$('.logo').mouseout(function(){
//			 $(this).stop().animate({"opacity": 1}, 'fast');								  
//	});
//	
	
		
	/********************************** FADE IN GOOGLE FONTS *******************************/	
	
	$('.importFont').hide();
	$('.importFont').fadeIn(500);
	
	
	
});
