

$(document).ready(function(){
	
	
	
	
 /* Embed Flash Nav */
 
    $('#sidebar').flash(
        { src: 'nav.swf',
          width: 400,
          height: 500 },
        { version: 8 }
    );
    
 /* Embed Flash Animation */
 
    $('#flash').flash(
        { src: 'peloton_twoway.swf',
          width: 345,
          height: 420 },
        { version: 8 }
    );    
	
	
	/*------ Dynamic Active State in Sub-nav ----------*/
	
	$("#sub-nav a").filter(function() {
	var currentURL = window.location.toString().split("/");
	return $(this).attr("href") == currentURL[currentURL.length-1];
	}).addClass("active");	
	
	
 /*------ Form Validation ----------*/
	$("#requestForm, #materialForm, #greenForm, #parisForm, #houstonForm, #calgaryForm, #surveyForm, #seminarForm").validate();
 
 
 
 /* Sitemap ---*/
 $("#tree").treeview({
				collapsed: true,
				animated: "medium",
				control:"#sidetreecontrol",
				prerendered: true,
				persist: "location"
			
 });
 
 
 
 });
