$(document).ready(function()
{
	$("#lavalamp").lavaLamp({
                fx: "easeOutBack",
                speed: 700
            });

	$.fn.over = function()
	{
		return this.hover(function()
		{
			$(this).animate({"marginTop": "-7px"}, 120);
			$(this).animate({"marginTop": "0px"}, 120);
		},
		function()
		{
			//
		});
	};
	$(".box_green .title h2").over();
	$(".box_orange .title h2").over();

	$(".lightbox").lightbox();

});