// Vodamia top navigation - Brett Gowder

$(document).ready(function() {

	$("#topnav li").prepend("<span></span>");

	$("#topnav li").each(function() { // Loops through each list item
		var linkText = $(this).find("a").html(); 
		$(this).find("span").show().html(linkText); 
	}); 

	$("#topnav li").hover(function() {	
		$(this).find("span").stop().animate({
			marginTop: "-30" 
		}, 200);
	} , function() { // On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  // Moves the span tag back to its original state
		}, 200);
	});
	
});
