
//$.html5();										// default usage
	//$.html5('section,article,header,nav,hgroup,wrapper,content,copyright,footer');			// with custom tags as a string, comma seperated
	
						// now you can do the rest of your code


$(document).ready(function() {
						   
//Add LI hover to menus
$("li").hover(
	function(){
		$(this).addClass("hover").find("ul:first:hidden").show();
	},
	function(){
		$(this).removeClass("hover").find("ul:first").hide();
	});

//Add a Last Item class to a few things
$("#nav ul li:last-child").addClass("lastItem");
$("#ctaShell .cta").addClass("lastItem");



$(function() {
   $('#slideshow').cycle({
        prev:   '#prev',
        next:   '#next',
		timeout: 4000,
    pause:           1,     // true to enable "pause on hover" 
        speed: 1000
    });
});

 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
 $('#content2').hide();
 $('#content3').hide();
 // shows the slickbox on clicking the noted link  
  $('a#show1').click(function() {
    $('#content1').hide('fast');
    $('#content2').show('fast');
    $('#content3').hide('fast');
    return false;
  });
 // hides the slickbox on clicking the noted link  
  $('a#show2').click(function() {
    $('#content1').show('fast');
    $('#content2').hide('fast');
    $('#content3').hide('fast');
    return false;
  });
 // shows the slickbox on clicking the noted link  
  $('a#show3').click(function() {
    $('#content1').hide('fast');
    $('#content2').hide('fast');
    $('#content3').show('fast');
    return false;
  });
 
 // toggles the slickbox on clicking the noted link  
 // $('a#slick-toggle').click(function() {
  //  $('#content1').toggle(400);
  //  return false;
 // });

$('header nav ul li:not(.lastItem)').after('<li> | </li>');
//$('#contentShell nav ul li:not(.lastItem)').after('<li> | </li>');
$('footer nav ul li:not(.lastItem)').after('<li> | </li>');





	








});
