<script type="text/javascript">
$('#menu_element').click(function () {
$('#el1, #el2, #el3').fadeOut(200);
$('#preloader').fadeIn(150);
$('#container').load('loadpage.html', function () {
$('#preloader').hide();
$('#new_content').show();
});
});
</script> |