$(document).ready(function(){
	

$('.hideDevBox').click(function() {
	$(this).parents('div').hide('slow');
	return false;
});

});