function RandomHeader(){
}

$(document).ready(function () {	
	//RandomHeader();
		// This whole thing is retarded!!!
		/*
		// finds the height of the songlist
		var boxHeight = $(this).find('#albumInfo').height();
		
		// sets all sonlists top height of 0
		$('#albumInfo').css("height", 0);
		
		// sonlist animation
		$(this).find('.toggle').toggle(function () {
			$(this).parent().parent().find('#albumInfo').stop().animate({
				height:	boxHeight
			});
			$(this).removeClass('expand');
			$(this).attr('title','click to collapse');
		}, function(){
			$(this).parent().parent().find('#albumInfo').stop().animate({
				height:	0
			});
			$(this).addClass('expand');
			$(this).attr('title','click to expand');
		});	
		//*/
	$("#albumInfoToggle").click( function() {
        $("#albumInfo").slideToggle(400);
    }).toggle(
		function(){
			$(this).attr('title','click to collapse').toggleClass("expand");
		},
		function(){
			$(this).attr('title','click to expand').toggleClass("expand");
		}
	);
	
	//Mediaplayer hover styles
	$(".mediaHolder ul li.clearfix").hover(
		function() {
			$(this).css("background-color", "#0a0a0a");
			$(this).find('input').css('color', '#F1B144 ');
			$(this).find('.duration').css('color', '#F1B144 ');
		},
		function() {
			$(this).css("background-color", "transparent");	
			$(this).find('input').css('color', '#F1B144 ');
			$(this).find('.duration').css('color', '#F1B144 ');
		}
	);
	
	//Video Section hover styles for the home page.
	$('li.mini').hover(
		function() {
			$(this).css('background-color', '#000000');
		},
		
		function() {
			$(this).css('background-color', '#383838');
		}
	);
	
	//Get rid of background for li's in comments.
	$('#comments li.pagination, #comments li:last-child').css('background', 'none');
	
	
 	function equalHeight(group) {
		tallest = 0;
		group.each(function() {
			thisHeight = 0;
			thisHeight = $(this).height();
			if(thisHeight > tallest) {
				tallest = thisHeight;
			}
		});
		group.height(tallest);
	}
	equalHeight($('#mainCol .members li .bottom'));
	
	//twitter async load
	$.getJSON("http://twitter.com/statuses/user_timeline/justinbieber.json?count=3&callback=?", function(twitters){
			var statusHTML = [];
			for (var i=0; i<twitters.length; i++){
			var username = twitters[i].user.screen_name;
			var status = twitters[i].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g, function(url) {
				return '<a href="'+url+'">'+url+'</a>';
			}).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
				return  reply.charAt(0)+'<a href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
			});
			statusHTML.push('<li><span>'+status+'</span> <a style="font-size:85%" href="http://twitter.com/'+username+'/statuses/'+twitters[i].id+'">'+relative_time(twitters[i].created_at)+'</a></li>');
			}
			document.getElementById('twitter_update_list').innerHTML = statusHTML.join('');
		}
	);
});

function OpenModalBox(title, window, rtn)
{
	Shadowbox.open(
		{ 
		"title": title,
		"content": "/aspnet_client/microgroove/windows/" + window + ".aspx?rtn=" + rtn,
		"width": 610, "height": 580,
		"reloadOnClose": false, "player": "iframe" 
		}
	); 
}

function relative_time(time_value) {
  var values = time_value.split(" ");
  time_value = values[1] + " " + values[2] + ", " + values[5] + " " + values[3];
  var parsed_date = Date.parse(time_value);
  var relative_to = (arguments.length > 1) ? arguments[1] : new Date();
  var delta = parseInt((relative_to.getTime() - parsed_date) / 1000);
  delta = delta + (relative_to.getTimezoneOffset() * 60);

  if (delta < 60) {
    return 'less than a minute ago';
  } else if(delta < 120) {
    return 'about a minute ago';
  } else if(delta < (60*60)) {
    return (parseInt(delta / 60)).toString() + ' minutes ago';
  } else if(delta < (120*60)) {
    return 'about an hour ago';
  } else if(delta < (24*60*60)) {
    return 'about ' + (parseInt(delta / 3600)).toString() + ' hours ago';
  } else if(delta < (48*60*60)) {
    return '1 day ago';
  } else {
    return (parseInt(delta / 86400)).toString() + ' days ago';
  }
}
