$(function(){

$.fn.supersized.options = {  
				startwidth: 640,  
				startheight: 480,
				vertical_center: 1,
				slideshow: 1,
				navigation: 1,
				thumbnail_navigation: 0,
				transition: 0, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
				pause_hover: 1,
				slide_counter: 0,
				slide_captions: 1,
				slide_interval: 120000,
				slides : [
					{image : 'http://www.utahpga.com/images/backgrounds/bg4.jpg', title : "Sunbrook Pointe"},
					{image : 'http://www.utahpga.com/images/backgrounds/bg5.jpg', title : "Eaglewood"},
					{image : 'http://www.utahpga.com/images/backgrounds/bg6.jpg', title : "Glen Eagle"},
					{image : 'http://www.utahpga.com/images/backgrounds/bg7.jpg', title : "Sand Hollow"},
					{image : 'http://www.utahpga.com/images/backgrounds/bg8.jpg', title : "Painted Valley"},
					{image : 'http://www.utahpga.com/images/backgrounds/bg9.jpg', title : "Promontory Club"},
					{image : 'http://www.utahpga.com/images/backgrounds/bg10.jpg', title : "Palisade State Park"},
					{image : 'http://www.utahpga.com/images/backgrounds/bg11.jpg', title : "Carbon County Club"}
				]
			};
	        $('#supersized').supersized(); 
			$('#pauseplay').hide();
	  
	  $('.clickArea').click(function(){
		  if ($(this).parent().hasClass('open')) {
		  		$(this).parent().removeClass('open').animate({'right': '-220px'}, 500);
		  } else {
			    $(this).parent().addClass('open').animate({'right': '0px'}, 500);
		  }
	  });
	
	
	$('#showhide').click(function(){
		var content = $('.wrapper');
		if (content.is(':visible')) {
			content.hide();
			$(this).text('Show Content');	
		} else {
			content.show();
			$(this).text('Hide Content');	
		}
	});
	
	$('#footer-showhide').click(function(){
		var content = $('.wrapper');
			content.hide();
	});



});
