// no conflicts with other frameworks
var $j = jQuery.noConflict();

//
// window.onload function to setup various javascripts
//
$j(function() {

	//fix png transparency in IE<6
	$j('img[@src$=.png]').ifixpng();
	
	$('body').removeClass('js');
	setUpAriaLandmarks();
	setUpSkipLink();
	styleLinkButtons();
	createMarketingCarousel($("#secondaryMessage"));
	createORBtoggle();
	createOverlappableCollapsiblePanel();
	createShadedBoxes(); /* call after other functions that modify shadowboxes */
	createMegaMenu();
	createMarketingPullDowns();
	$(".inFieldLabel label").inFieldLabels(); 
	$(".inFieldLabel input").attr("autocomplete","off");
	
	    $j('#divMainRotator').cycle({
      speed:       600,
      timeout:     4000,
      pager:      '#divMainRotatorNav',
      pagerEvent: 'mouseover',
      fastOnEvent: true
    });

});

