$(document).ready(function() {
	var html = $('#topPanel_temp').html();
	$('#topPanelContent').append(html);
	$('#topPanel_temp').remove();
	
	$('a.jsSlide').click(function(){
		var rel = $(this).attr('rel');
		global.scrollToCallback = false;
		$(this).attr('href', '');
		$(document).scrollTo($('#headerMain'), global.animSpeed, {axis:'y', onAfter: function(){
			if (global.scrollToCallback==false){
				global.topPanel.open(rel);
				global.scrollToCallback = true;
			}
		}});
		return false;
	});
});
