$(function(){
if(navigator.userAgent.indexOf('Chrome')>0 || navigator.userAgent.indexOf('Safari')>0){
$("#headerBox .headerlink .list").css('top','54px');
$("#headerBox .headerlink .favorite").hide();
}else{
$("#headerBox .headerlink .favorite a").click(function(event){
var title = document.title;
var url = location.href;
if (window.sidebar) {
window.sidebar.addPanel(title, url,"");
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}event.preventDefault();});}});
