/* START - DO NOT REMOVE THIS JAVASCRIPT CODE */
$jQ = jQuery.noConflict();
$jQ(document).ready(
	function(){
		$jQ("#Bottom-Content-Pane .Left-Column, #Bottom-Content-Pane .Center-Column-Inner-Wrapper, #Bottom-Content-Pane .Right-Column").equalizeCols(); 
		$jQ("ul.navigation li ul li:last-child a").addClass('last');
		$jQ(".navigation li>ul").parent().hover(
			function(){
				$jQ(this).children("ul").addClass("hover");
			},
			function(){
				$jQ(this).children("ul").removeClass("hover");
			}
		);
		$jQ(".Nav-Column ul li:last-child").addClass('last');
		$jQ("div#LowerLeftColumnContent li.Selected > ul").show();
		$jQ("div#LowerLeftColumnContent li.Selected").parents("ul").show();
	}
);
$jQ(function() {
    $jQ("#Main-Slideshow").cycle({
		timeout:3500,
		prev:"#Main-Slideshow-Previous",
		next:"#Main-Slideshow-Next",
		pause:"#Main-Slideshow-Pause"
	});
})

jQuery.fn.equalizeCols = function(){
	var height = 0;
	return this.css("height","auto").each(function(){
	height = Math.max( height, jQuery(this).outerHeight() );
	}).css("height", height);
}; 
/* END - DO NOT REMOVE THIS JAVASCRIPT CODE */