var log = function(txt) {
	console.log ? console.log(txt) : alert(msg);
};

var work_detail = function(obj, ex) {
	$.ajax({
		type: "POST",
		url: "/j/work_detail/",
		data: "obj=" +  obj,
		dataType: "html",
		contentType: "text/html; charset=utf-8",
		beforeSend: function() {
			$('#work-detail').html('');
			$('#work-detail').addClass('loading');
		},
		success: function(res){

			$('#work-detail').html(res);
			$('#work-detail').hide();
			$('#work-detail').removeClass('loading');
			$('#work-detail').fadeIn(500);

			$('#exhibition-' + ex + " li a").each(function() {
				$(this).removeClass('active')
			});

			$('#work-item-' + obj).addClass('active');
		}
	});
	return true;
};
