$(document).ready(function() {
    $(".details").each(function() {
        $(this).hide();
    });
    $(".more").click(function() {
//        alert($(this).attr('rel'));
        $("#" + $(this).attr('rel')).slideFadeToggle(750);
        return (false);
	});
});

jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
    return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);  
};

