$(function(){
	setTimeout("initSafari()",10);
});
function initSafari(){
	$('#demo a').fancyzoom({showoverlay:false});
	$('#pane3').jScrollPane({showArrows:true,scrollbarWidth:14, scrollbarMargin:0});
	$('.showhide').click(function(){
		openTab($(this).attr('href'));
		return false;
	});
	$('.showhide:first').trigger('click');
}
function openTab(id){
	$('.opened').hide().removeClass('opened');
	$(id).show().addClass('opened');
	$('#pane3').jScrollPane({showArrows:true,scrollbarWidth:14, scrollbarMargin:0});
}
