$(function() {
    $("#menu").lavaLamp({
        fx: "backout",
        speed: 700,
        startItem: 5
    });
    
    $("#doLogin").click(function () {
		$("#login_form").animate({ width: "200px" }, 1500).animate({ height: "100px" }, 500);
	});

    $(" <div />" ).addClass( "readmore" ).html( "<img src='images/leesmeer.png' alt='Lees meer' />").prependTo( $( ".box_portfolio" ) );

    $(".box_portfolio").mouseenter(function(){
    	$(this).children(".readmore").animate({ marginLeft: "178px" }, 200);
    }).mouseleave(function(){
    	$(this).children(".readmore").animate({ marginLeft: "165px" }, 200);
    });
	
});
