// JavaScript Document

		$(function(){
		$('#web a, #print a, #logo-nav a').hover(function() {
			$(this).children('.front').stop().animate({ "top" : '263px'}, 700);	
		}, function () {
			$(this).children('.front').stop().animate({ "top" : '0'}, 400);	
		});	
	});	
	
	$(function(){
	
		//Rollover for posts
			 jQuery('.recent-post').animate({
				"opacity" : .2	
			});	
			
			 jQuery('.recent-post').hover(function(){
				 jQuery(this).stop().animate({"opacity" : 1}, 700);
			}, function(){
				 jQuery(this).stop().animate({"opacity" : .2}, 400);
			});
			
			//Page Scroll
			 jQuery('.top-title').click(function(){
				jQuery('html, body').animate({
				scrollTop:  jQuery("#bottom").offset().top
					}, 2000);
			});
			
			})
	

