$("document").ready(function() {
	
	$("ul li:last-child").addClass('last-child');
	$("ul li:first-child").addClass('first-child');
	
	$("#header div > ul > li > ul > li a").hover(function() {
		$(this).animate({"padding-left": "20px"}, 100);
	}, function() {
		$(this).animate({"padding-left": "15px"}, 100);
	});
	
	$(".image a").hover(function() {
		
		$(this).find(".overlay h2").animate({'padding-left' : '5px'}, 200);
		$(this).find(".overlay small").animate({'padding-left' : '5px'}, 200);
		
	}, function() {

		$(this).find(".overlay h2").animate({'padding-left' : '0px'}, 200);
		$(this).find(".overlay small").animate({'padding-left' : '0px'}, 200);		
		
	});
	
	$("a .image").hover(function() {
		
		$(this).find(".overlay h2").animate({'padding-left' : '5px'}, 200);
		$(this).find(".overlay small").animate({'padding-left' : '5px'}, 200);
		
	}, function() {

		$(this).find(".overlay h2").animate({'padding-left' : '0px'}, 200);
		$(this).find(".overlay small").animate({'padding-left' : '0px'}, 200);		
		
	});
	
	$('a.mailchimp').fancybox({
		overlayColor : "#000"
	});

	$('.column-right').after('<div class="clear"></div>');
	
});

