/**
 * --------------------------------------------------------------------
 * Custom Initiation
 * Version: 0,1, 14.11.2009
 * by Jesse Burcsik, jesseburcsik@gmail.com
 *  
 */

 	var $j = jQuery.noConflict(); 

	 $j(document).ready(function(){ 
	
	// Addition to the new flyout menu - makes the parent LI hovered so it can keep a hover state
	hoverParent();
	
	// Test for humans using the form 
	peopleTest()
    
    // Adds PNG support for ie7 amd 6
 	fixPngs(); 
 
	//remove css that CMS injects for vernav
 	// removeVertCSS();
 	
 	//A function with a series of methods to edit the CMS vertnav
 	extendVertNav();
 	
 	//Removes hover cursor from menu elements with href="#"
 	removeCursorChange();
 	
 	// This adds a span to A tags with the class button-link
 	linksToButtons();
 
 	// Opens external links in a new window
 	externalLinks();
 
    //START SLIDER 
    makeSlider();
 
 	// Makes one of the <li> from the #did-you-know <ul> show randomly at a time
 	showRandomLi('#did-you-know');
 	
 	showRandomBlurbLi('#right-col-blurbs');
 	
 	showRandomBlurbLi('#left-side-blurbs');
 	 
 	// Initalizes Pretty photo functionality on all links with the class "popup-photo"
 	$j("a[rel^='gallery']").prettyPhoto({
 		showTitle: false
	 });
 
	// Init the Expando used in PICTURES section
	initPictureExpando(); 
 
 
  
 
 


// END SLIDER
 
 }); 

