$(document).ready(function() {
    //alert('hello world');
	//alert($("ul#nav li"));
	$("ul#nav li").each(
		function(){
			//alert($this);
			$(this).mouseover(
				function()
				{
					$(this).addClass("hover");
				}
			);
			
			$(this).mouseout(
				function()
				{
					$(this).removeClass("hover");
				}
			);
		}
	);
	
	$("a").each(
		function(){
			//alert($this);
			$(this).mouseover(
				function()
				{
					$(this).addClass("hover");
				}
			);
			
			$(this).mouseout(
				function()
				{
					$(this).removeClass("hover");
				}
			);
		}
	);
	
	$("input").each(
		function(){
			//alert($this);
			$(this).mouseover(
				function()
				{
					$(this).addClass("hover");
				}
			);
			
			$(this).mouseout(
				function()
				{
					$(this).removeClass("hover");
				}
			);
		}
	);
	
	$(".cta").each(
		function(){
			//alert($this);
			$(this).mouseover(
				function()
				{
					$(this).removeClass("cta");
					$(this).addClass("cta-hover");
					
				}
			);
			
			$(this).mouseout(
				function()
				{
					$(this).removeClass("cta-hover");
					$(this).addClass("cta");
				}
			);
			
			$(this).click(
				function()
				{
					open($(this).children(".go-button").attr("href"),"_self");
				}
			);
		}
	);
	
    // Show off
    //$(".slideshow-container").css("overflow", "visible");
});