/**
 * --------------------------------------------------------------------
 * Custom Initiation
 * Version: 0,1, 14.11.2009
 * by Jesse Burcsik, jesseburcsik@gmail.com
 *  
 */

 var $j = jQuery.noConflict(); 

 $j(document).ready(function(){ 
 
 	fixPngs(); 
 	
 	// Remove cursor from dead link in vertical nav
 	removeCursorChange()
 	
 	// Open external Links in seperate window
 	externalLinks();
 	
 	//A function with a series of methods to edit the CMS vertnav
 	extendVertNav();


	// Before slider gets called. Randomly Choose one of the image to start with.
	showRandomImg( '#banner-images' );

	// Call the slider 	
 	slideSwitch();
 	
 	$j(function() {
    setInterval( "slideSwitch()", 8000 );
	});
 	
 	
//	make Slider
//	 $j('#banner-images').cycle({
//		fx: 		'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
//		speed:		1000,
//		timeout:    8000
//	});





 
 }); 
