// no conflicts with other frameworks
var $j = jQuery.noConflict();

//
// window.onload function to setup various javascripts
//
$j(function() {
	// make a nice rotator

$j('#slideshow').cycle(
	{ 
	    speed:  'medium', 
	    timeout: 6000,
	    pause: true,
	    pager:  '.rotator_nav', 
	    pagerAnchorBuilder: function(idx, slide) 
		{ 
	        // return selector string for existing anchor 
	        return '.rotator_nav li:eq(' + idx + ') a';
	    } 
	});
  
});
