  $(document).ready(function(){
    $("#links a:not('.back'), #paginator a").hover(function() {
    	if ($(this).parent().hasClass("offer")) { $(this).children().css("text-decoration","none"); $(this).css("text-decoration","none"); }
    	$(this).children().addClass("span_hover"); 
    },function() {
    	if ($(this).parent().hasClass("offer")) { $(this).children().css("text-decoration","underline");  $(this).css("text-decoration","underline"); }
    	$(this).children().removeClass("span_hover"); 
    });
    $(".back").hover(function() {
    	$(this).children().css({color:"#fa5503"});
    },function() {
    	$(this).children().css("color","#000");
    });
   	$("#application_add_form dd#send-element").hover(function() {
    	$(this).addClass($(this).attr("ID")+"_hover");
    },function() {
    	$(this).removeClass($(this).attr("ID")+"_hover");
    });
  });
