$(function() {
	$("#mainmenu").lavaLamp({
					fx: "backout",
				speed: 1000,
				click: function(event, menuItem) {
						return true;
				}
		});
});
$(document).ready(function() {
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown(200);
		document.getElementById("open").style.visibility="hidden";
	});	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp(200);
		document.getElementById("open").style.visibility="visible";
	});	
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'235px'},{queue:false,duration:160});
	}, function() {		
		$(".cover", this).stop().animate({top:'270px'},{queue:false,duration:160});
	});
});
