$(document).ready(function(){  
    //To switch directions up/down and left/right just place a "-" in front of the top/left attribute  
    $('#header #topmenu li').hover(function(){  
        $("a", this).stop().animate({top:'-5px'},{queue:false,duration:100});  
    }, function() {  
        $("a", this).stop().animate({top:'0px'},{queue:false,duration:100});  
    });  
	//slider banner
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true
	});
});  
// JavaScript Document
