$(document).ready(function(){ // WR Proof linkjes $('a[rel=target_blank]').click(function() { window.open(this); return false; }); // Hoogte aanpassen $front_height = $('.box_wrap .front').height(); $('.box_wrap .back').css("height",$front_height+20); $('.box_wrap .front').css("margin-top",-$front_height-10); // Button to top $('a[href=#globalwrapper]').click(function(){ $('html, body').animate({scrollTop:0}, 'slow'); return false; }); // Back button $('a.but_terug').show(); $('a.but_terug').click(function(e){ e.preventDefault(); history.go(-1); }); });