1 $(document
).ready(function() {
3 var divs
= document
.getElementsByTagName('div');
4 if(document
.location
.hash
){
5 $(document
.location
.hash
+ '_').show();
8 $("ul.portfolio li.project a.exhibit").click(function() {
11 $("ul.portfolio li").removeClass("active");
12 $(this).addClass("active_project");
14 var activeTab
= $(this).attr("href") + '_';
16 $(activeTab
).show("slide", 400);
18 $(activeTab
).show("puff", 600);
19 $(activeTab
).addClass("active_tab");
21 $('#showdivs').click(function() {
22 for(i
=0;i
<divs
.length
;i
++){
23 divs
[i
].className
+= (" shownDiv");