	$(document).ready(function(){
    //hide extra content through here rather than in css file
	// style checkboxes
		
	//check if the box is ticked but nothing is showing, on a page refresh for example
	if ($("#enhancedChecker").is(":checked")){
	$(".profilePanel.Basic").hide();
	$(".profilePanel.Enhanced").show();
	$(".enhanceForm").show();
	}
	
	$("#enhancedChecker").click(function () {
			
			$(".enhanceForm").slideToggle("fast");
			if (this.checked )  {
    			$(".profilePanel.Basic").hide();
				$(".profilePanel.Enhanced").fadeIn("fast");
			} 
			else {
				$(".profilePanel.Basic").fadeIn("fast");
				$(".profilePanel.Enhanced").hide();
			}
			
	
			
		});
	
	
	   $(".setTimes").click(function () {
     		$(".openingTimes").slideToggle("normal");
		}); 
		
		
		$(".previewButton").click(function () {

            $(".Enhanced #coLogo").load("/flat/imageAjax.aspx #coLogo");
			
			$(".Enhanced #coAddress").html(
			$("#companyname").val() + "<br/>" +
			$("#address1").val() + "<br/>" +
			$("#address2").val() + "<br/>" +
			$("#address3").val() + "<br/>" +
			$("#postcode").val() + "<br/>" +
			$("#phonenumber").val() + "<br/><br/>" +
						"<a href='" + $("#website").val() + "'>" + $("#website").val() + "</a>"

			);
			
					
			$(".Enhanced #coHours").html("Opening hours<br/>" + 
			"<span class='day'>M</span> " + $("#monOpen option:selected").text() + " " + $("#monClose option:selected").text() + "<br/>" +
			"<span class='day'>T</span> " + $("#tuesOpen option:selected").text() + " " + $("#tuesClose option:selected").text() + "<br/>" +
			"<span class='day'>W</span> " + $("#Select1 option:selected").text() + " " + $("#Select2 option:selected").text() + "<br/>" +
			"<span class='day'>T</span> " + $("#Select3 option:selected").text() + " " + $("#Select4 option:selected").text() + "<br/>" +
			"<span class='day'>F</span> " + $("#Select9 option:selected").text() + " " + $("#Select10 option:selected").text() + "<br/>" +
			"<span class='day'>S</span> " + $("#Select5 option:selected").text() + " " + $("#Select6 option:selected").text() + "<br/>" +
			"<span class='day'>S</span> " + $("#Select7 option:selected").text() + " " + $("#Select8 option:selected").text() + "<br/>"
			);		
			
			$(".Enhanced #companyDescription P").text(
			$("#description").val()
			);

			
			
			$(".Enhanced #companyFeatProds").load("/flat/imageAjax.aspx #companyFeatProds");
			
			$(".Enhanced #companyLocPhotos").load("/flat/imageAjax.aspx #companyLocPhotos");
			
			 $(".Enhanced #companyVideo").html(
			 $("#video").val()
			);
		 	
				
			$(".Enhanced #companyNews P").text(
			$("#news").val()
			);
		
			$(".Enhanced #companyFurtherInfo P").text(
			$("#info").val()
			);
			
		});
		
		
			
	});

