$(document).ready(function(){

	$('#sitemapHolder').hover(
		function () {
			$('#sitemapHolder').show();
			$('#mainnavTrainingCourses a').addClass('selected');
		}, function () {
			$('#sitemapHolder').hide();
			$('#mainnavTrainingCourses a').removeClass('selected');
		}
	);
	$('#mainnavTrainingCourses').hover(
		function () {
			$('#sitemapHolder').show();
		}, function () {
			$('#sitemapHolder').hide();
		}
	);
	
	$('#testimonials').cycle({ 
		fx: 'turnUp',								 
		slideExpr: 'blockquote',
		speed: 300,
		delay: 1500
	});
	
  $('#testimonials').click(function() {
		top.location = '/feedback/';
  });
	
	$('#clients').cycle({ 
		fx: 'fade',								 
		slideExpr: 'li',
		speed: 1500,
		delay: 300
	});
	
  $('#clients').click(function() {
		top.location = '/feedback/client-list.htm';
  });
	
	$('#footermenu').hover(
		function () {
			$('#footermenu').show();
			$('#footermenubtn a').addClass('selected');
		}, function () {
			$('#footermenu').hide();
			$('#footermenubtn a').removeClass('selected');
		}
	);
	$('#footermenubtn a').hover(
		function () {
			$('#footermenu').show();
			$('#footermenubtn a').addClass('selected');
		}, function () {
			$('#footermenu').hide();
			$('#footermenubtn a').removeClass('selected');
		}
	);
	
		
});
