$(document).ready(function(){

	$(".boxite").hover(function() {

		$(this).children(".boxmeta").slideDown("slow") ;

	}, function() {

		$(this).children(".boxmeta").slideUp("3000");

	});
	
	$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });

	  $("#A").lavaLamp({
        fx: "backout", 
        speed: 700,
        click: function(event, menuItem) {
        return true;
            }
           });
	
	
});