if ( window.console == undefined || window.console.log == undefined ) {	window.console = { log:function(msg){ /* msg */ } } }
if ( typeof(window.billboard)=="undefined"){ billboard={}; }
billboard.artists = new ( function($) {
    var me = this;
	me.init = function(){
		billboard.broadcaster.addListener( "pageLoaded", function() { me.onPageLoaded(); } );
    };

    me.onPageLoaded = function(){
		billboard.log("billboard.artists.onPageLoaded()");

		/* toggled heart from grey to gold for blue row hovers */
/*
		$('.track-row,.news-row,.hot-album,.hot-artist,.song-row').hover(
            function(){
			    $(this).find('span.percent-like').css({backgroundPosition: '0px -14px'});
			    $(this).find('a.total-comments').css({backgroundPosition: '0px -15px'});
			    return false;
		    }, function(){
                $(this).find('span.percent-like').css({backgroundPosition: '0px 0px'});
                $(this).find('a.total-comments').css({backgroundPosition: '0px 0px'});
			    return false;
		    }
        );
*/

		/* artist section launch visualizer top link */
/*
		$('.artist .visualizer-launch').hover(
            function(){
			    //$(this).css({backgroundPosition: '0px 0px'}); 
			    return false;
		    } ,function(){
                //$(this).css({backgroundPosition: '0px -45px'}); 
			    return false;
		    }
        );

*/
		/* select all / none toggling */
/*
		$(".conversation-comments .add-comment").click(function(){
	        $('.new-comment').show();
        });
		$(".conversation-comments .cancel").click(function(){
	        $('.new-comment').hide();
        });
		$("#artist-conversations .start-new-convo").click(function(){
	        $('.new-conversation').show();
        });
		$(".new-conversation .cancel").click(function(){
	        $('.new-conversation').hide();
        });		
*/

	};

    me.jumpToVideo = function(){
		scrolltoVid = $("#songvideo").offset().top;
        $('html,body').animate( {scrollTop: scrolltoVid }, 1000 );
    };

})(jQuery);
