$(document).ready(function() {
    
	$('#left_nav ul li a, #nav ul li a:not([href=/index.php])').click(function(e) {
	  var url = $(this).attr('href');
	  e.preventDefault();
	  $('#cts_promo_frame').children().animate(
	     {
		   left: '-632px'
		 },
		 {
		   duration: 1000,
		   easing: 'swing',
		   queue: false
		 }
	   );
	   $('#cts_promo_frame').fadeOut('slow', function() { $(this).remove(); window.location = url; });
	});
	
	CTS_PROMO.init('#cts_promo_frame', 11000, 3000);
	
});
