/* Pop-out box */

$(document).ready(function() {
	// Add jQuery effects
	$("#pullout-container").prepend("<a href=\"#\" id=\"show-links\"><img src=\"/assets/templates/bhr/imgs/sister-sites.jpg\" alt=\"Sister Sites\" title=\"Click for links to our sister sites.\" /></a>").addClass("show").show();
	$("#pullout-content").append("<dl><dt><a href=\"http://www.bathhouse-restoration.com\">Bathhouse Restoration</a></dt><dd>Architectural antiques and restoration service.</dd><dt><a href=\"http://www.antiquetaps.com\">Antique Taps</a></dt><dd>Quality fully restored antique taps, and accessories.</dd><dt><a href=\"http://www.paul-mcgowan.com\">Paul McGowan</a></dt><dd>Currently the artist in residence at the Eden Project view his latest works, press, interviews, films and upcoming exhibitions</dd></dl><p><a href=\"#\" id=\"hide-links\">Hide</a></p>");
	
	$("#show-links").click(function() {
		$("#pullout-container").addClass("full-expand");
		$("#pullout-content").show("slow");
	});
	
	$("#hide-links").click(function() {
			$("#pullout-content").hide("medium");
		$("#pullout-container").removeClass("full-expand");
	});
	
	$("#pullout-content").hide();
	
});
