//When the DOM is ready
$(function() {
	$("nav a").append("<span>&nbsp</span>");
	$("#content a img").addClass('gallery');
	
	
	
	$("nav a").hover(function(e) {
	
		$(this)
			.hoverFlow(e.type, { width: 129 }, 200)
			.css('overflow', 'visible')
			.find('span')
			.hoverFlow(e.type, { width: 10 }, 200)
		
	}, function(e) {
		
		$(this)
			.hoverFlow(e.type, { width: 119 }, 200)
			.css('overflow', 'visible')
			.find('span')
			.hoverFlow(e.type, { width: 20 }, 200)
		
	});
	
	
})

$(function() {
	
	
	
	$(".footer-box a").hover(function(e) {
	
		$(this)
			
			.hoverFlow(e.type, { left: 5 }, 200)
		
	}, function(e) {
		
		$(this)
			
			.hoverFlow(e.type, { left: 0 }, 200)
		
	});
	
	
})


