// JavaScript Document
$(document).ready(function(){
	$("a.tab").mouseover(function(){
		if(!$(".active")){
			$(this).animate({top:"+=10"}, 100)
			//}).mouseout(function(){
			//$(this).animate({top:"-=10"}, 100)
		}
	});		
});
