<!--

	//================================================================================================
	// VARIABLES DECLARATION
	//================================================================================================	

	
	//================================================================================================
	// AJAX FUNCTIONS
	//================================================================================================		

	
	//================================================================================================
	// FORM FUNCTIONS
	//================================================================================================

	
	//================================================================================================
	// LAYOUT FUNCTIONS 
	//================================================================================================			

	
	//================================================================================================
	// EVENTS FUNCTIONS
	//================================================================================================
	function setupActions()
	{
		if ($chk($('nav_group')))
		{
			$$('.btn_menu').addEvents({
				'mouseout' : function() {
					this.setStyle('background-color', '#c35f3c');
					this.setStyle('color', '#ffffff');
					this.setStyle('text-decoration', 'none');
				},
				'mouseover' : function() {
					this.setStyle('background-color', '#ffffff');
					this.setStyle('color', '#c35f3c');
					this.setStyle('text-decoration', 'underline');
				}
			});

			$$('.btn_menu_selected').addEvents({
				'mouseout' : function() {
					this.setStyle('text-decoration', 'none');
				},
				'mouseover' : function() {
					this.setStyle('text-decoration', 'underline');
				}
			});
		}
	}

	function setupSlideshow()
	{
		if ($chk($('rotating_images')))
		{
			$$('.slideshow').each(function(el, idx) {
				new Slideshow(el, false, {delay: 4000, width: 395, height: 295});
			});
		}
	}

	//================================================================================================
	// START THIS WHEN PAGE DOM READY
	//================================================================================================		
	window.addEvents({
	
		'domready' : function(e) {
			setupActions();
			setupSlideshow();
		},
		
		'resize' : function() {

		}
		
	});
	

//-->