jQuery(document).ready(function($) {
	// Artist Spotlight
	
	var markup = '<script id="spotlightTemplate" type="text/x-jquery-tmpl"><div id="spotlight"><h2>STAR Spotlight:<br>${title}</h2><img src="${image_url}" width="125" height="139" style="margin-right:12px;margin-bottom:10px;margin-top:3px;">{{html lead_in}}</div>';
	$.template('spotlightTemplate', markup);

	$.getJSON('/app/spotlight.asp?callback=?', { }, function(data) {
		console.log(data);
		$.tmpl('spotlightTemplate', data).appendTo('#artistSpotlight');
	});
	
	
});

function trimLength( data, length ) {
	if(data.length < length){
		return data;
	}
	else {
    	return data.substring(0, length) + '...';
	}
}



function ShowPlayer() {
		window.open("/Player/","MediaPlayer","width=600,height=330,left=50,top=50,border=0,toolbar=no,menubar=no,status=no,scrollbars=no,resizable=no");
}

function ShowOldPlayer() {
		window.open("/Player/","MediaPlayer","width=440,height=218,left=50,top=50,border=0,statusbar=no");
}

function toggle(elementId){
	if(document.getElementById){
		var obj = document.getElementById(elementId);
		obj.style.display = obj.style.display;
		obj.style.display = (obj.style.display == "block") ? "none" : "block";
	}
}

function hide(elementId){
	if(document.getElementById){
		var obj = document.getElementById(elementId);
		obj.style.display = "none";
	}
}

function show(elementId){
	if(document.getElementById){
		var obj = document.getElementById(elementId);
		obj.style.display = "block";
	}
}
