 $(document).ready(function() {
   $navTitle = "Watch a video...";
	 //loadContent('video.php');
	// $('#page-result').html($("#videoplay").html());

	 $("#slide1").show();

	 $(".nav-icons").hover(
		function () {
			$('#nav-desc').html($(this).attr('title'));
		},
		function () {
			$("#nav-desc").html($navTitle);
		}
	);

	 $(".nav-icons").click(function() {
		$navTitle = $(this).attr('title');
	 });


	 $('#slider').cycle({
    fx: 'scrollVert',
      speed: 1000,
      pause: 1,
      timeout: 7000,
      delay: 500,
      prev: '#slider_next',
      next: '#slider_prev'

});

 });
 function loadContent(url) {
	$("#videoplay").hide();
	$('#page-result').show();
	$.ajax({
			url: url,
			cache: false,
			success: function(html){
			 $("#nav-desc").html($navTitle);
			 $('#page-result').html(html);
			}
	});
 }
 function loadVideo(){
  $('#page-result').hide();
  $("#videoplay").show();
 }

