jQuery(document).ready(function($) {
	$('div.menu a').hover(
		function(){
			$(this).animate({"top": "0px"}, "fast");
			},
		function(){
			$(this).animate({"top": "-20px"}, "fast");
			}
		);

	$.fn.preload = function() {
		this.each(function(){
			$('<img/>')[0].src = 'http://nohostairs.com/wp-content/themes/nohostairs20110126/images/menu/hover/' + this;
		});
	}
	
	$(['aboutus.png','services.png','locations.png', 'testimonials.png', 'gallery.png', 'contactus.png']).preload();



 });
