Team:UT Dallas/page js
From 2013.igem.org
function show_info(res_id) { $.get('https://2013.igem.org/Team:UT_Dallas/'+res_id+'?action=raw&ctype=text/html', function(data) { $('#result_space').fadeOut('fast', function() { $('#result_space').html(data); $('#result_space').fadeIn(); });
}); return false; }
function getData(fname) {
$('#results').hide("slide", { direction: "right" }, 250); $.get("https://2013.igem.org/Team:UT_Dallas/"+fname+"?action=raw&ctype=text/x-wiki", function(data) {
$('#results').html(data); $('#results').show("slide", { direction: "left" }, 250); });
return false;
}
function change_color(ele) {
$('#project_links > li').css('color','#000000'); $(ele).css('color','#ff7200');
} var images = new Array() var x=0; images[0] = ""; images[1] = ""; images[2] = ""; images[3] = ""; images[4] = "";
function changeImage(id) {
$('#'+id).css('background-image','url('+images[x]+')'); x++;
if(x >= images.length){ x = 0; } setTimeout("changeImage(id)", 200);
}