$(document).ready(function(){

    $("#offer").jExpand();
});

(function($){
    $.fn.jExpand = function(){
        var element = this;
        
        $(element).find("tr:odd").addClass("odd");
        $(element).find("tr:first-child").show();
        
        $(element).find("tr.odd").click(function(){
 			 
            $("tr.not").each(function(i){
				$("tr.not").fadeOut('300');

            });
			
			$(this).next("tr.not").toggle(); 

         
        });
    }
})(jQuery);



