$(document).ready(function() {
				
	daynight(); // run daynight.js
	
	$("#main_menu").positionMainMenu(true); // run positionMainMenu.jQuery.js
	
	$('#promo_home').cycle({ // Promo Home Cycle - Start
	fx: 'fade', // choose your transition type, ex: scrollHorz, fade, scrollUp, shuffle, etc...
	// pager:  '#slideshow_nav',
	// pager_nav_points: '<a href="#"><img src="/images/clear.gif" width="8" height="8" border="0" /></a>', //2.81R function
	easing:'easeOutQuart',	
	speed:    2000, 
    timeout: 8000
	// next:   '#slideshow_next', // The next button element if exist
    // prev:   '#slideshow_prev',  // The prev button element if exist
	// pause: 1 // pause on hover
	}); // Promo Home Cycle - End
	
	iPage_init();
	
});

$(function(){ // Home Promo Content Sliding Panel - Start
		$('#content_tab_middle a').click(function() {
  			$('#main_content_tab').animate({left: '-660'}, 500);
  			$('#main_content_home').delay(500).animate({left: '204'}, 1000);	
  			return false;				
  		});

		$('#content_home_top a').click(function() {
  			$('#main_content_home').animate({left: '-660'}, 1000);
  			$('#main_content_tab').delay(1020).animate({left: '-635'}, 500);
  			return false;				
  		}); 	 			
}); // Home Promo Content Sliding Panel - End

