//////////////////////////////////////////////////
//                                              //
// Programmed by Andrew Hopkins 14 April 2010   //
// Copyright HTDL All Rights Reserved 2010      //
//                                              //
//////////////////////////////////////////////////

$(document).ready(function() { // Start Function
	$("#expanding-content").hide("");
	$("#expanding-content-hide").hide("");

}); 

$(function() {
	// Bind Events
	$("#expanding-content-nav").bind("mouseover", reveal);
	$("#expanding-content-hide").bind("click", hide);
});


	function reveal(evt) {
	$("#expanding-content").slideDown("");
	$("#expanding-content-hide").show("");
	}
	
	function hide(evt) {
	$("#expanding-content").slideUp("");
	$("#expanding-content-hide").hide("");
	}
