$(function () {
	$.sifr({path:'/images/fonts/'});
	$('.bokkmark').sifr({font:'arlrdbd',color:'#8f9090'});
	$('.channels').sifr({font:'arlrdbd',color:'#41a9ca'});
	$('.channelsname').sifr({font:'arlrdbd',color:'#d03cc4'});
	$("#bstar").click();
});


function bookmark()
{
        var url = window.location.href;
        var title = document.title;

        if (window.sidebar) { // Mozilla Firefox Bookmark
            window.sidebar.addPanel(title, url,"");
        } else if( window.external ) { // IE Favorite
            window.external.AddFavorite( url, title);
        } else if(window.opera) { // Opera 7+
            return false; // do nothing - the rel="sidebar" should do the trick
        } else { // for Safari, Konq etc - browsers who do not support bookmarking scripts (that i could find anyway)
             alert('Unfortunately, this browser does not support the requested action,'
             + ' please bookmark this page manually.');}
}