var ref = true;
$(function() {
    var mtab = $('#mtab');
    var ftab = mtab.html();
    $('.tbclick').click(function(e){
		r = true;
        e.preventDefault();
        $('.tbclick').removeClass('active');
        $(this).addClass('active');
        t = $(this).attr('name');
        if (t != 'ftab') {
			mtab.html($('#' + t).html());
        }else{
			mtab.html(ftab);
        }
		
		
		
		if(t == 'rtab'){
			$(".thpop").thumbPopup({
				imgSmallFlag: "/small/",
				imgLargeFlag: "/big/"
			});
		}
    });
});



