/* Hook links *
$(document).ready(function(){
	$('#menu a').click(function(){
		$('#wrap').append('<img src="img/loading.gif" id="loading">');
		var url = 'http://webbexperterna.se/' + $(this).attr('id') + '.html';
		$('#content').slideUp(200);
		$.ajax({
			url: url,
			cache: false,
			success: function(html){
				$('#content').append($(html).find('#content > *'));
				$('#content').slideDown(250);
				$('#loading').remove();
			},
			dataType: 'jsonp'
		});
		return false;
	});
});
/* */
