

/* ---------- On Document Ready ---------- */
jQuery.noConflict();


jQuery(document).ready(function(){
	
	
	jQuery('.sub_ul').hide(0);	
	
	jQuery('div.head').each(function(i){
		$this = jQuery(this);						
		if( $this.attr('id') == bodyId ){
			$this.next().slideDown(400);
			$this.children('a').addClass('mainSelected');
		}
	});
	
	jQuery('.sub_ul > li').each(function(i){
		$this = jQuery(this);									
		if( $this.attr('class') == bodyClass ){
			$this.addClass('clicked');
			$this.parent().show();
			$this.parent().prev().children('a').addClass('mainSelected');
		}
	});	
	
	// loads first bio
	//$("#maincontent").load('bios/jperry.html');	
	//jQuery("#dynamic").load("http://99.198.101.190/OurWork/CaseStudies/CaseStudyDetail.aspx?action=case&ItemId=1");

});

function loadContent(page) {
			jQuery("#dynamic").load(page);
		}





