// JavaScript Document
jQuery.fn.extend({
  enter: function() {
    return this.each(function() {
			var pth = $(this).find("img")[0];
			$(this).hover(function(){
			$(pth).attr("src",pth.src.replace(/.gif/g, '_on.gif'));
			},function(){
			 $(pth).attr("src",pth.src.replace(/_on.gif/g, '.gif'));			
  });
							
});
}
});
$(function(){
$("#footer").width(755);
$("#footer").corner("tr br 7px")
$(".hover a").enter();
$(".menu li").hover(function()
        {
        $(this).addClass("sf");
        },
     function()
     {
        $(this).removeClass("sf");
     });

});