$(document).ready(function() {

	// Add body class
	$('body').addClass('js');
	
	// Cycle homepage images
	$('.slide').cycle({ 
		random: 1
	});
	
	// equal link cols
	//equalHeight($('.links .linkbox'));
	
	//hook up profile videos
	$("#player ul li a").click(function(){
		var flvpath=$(this).children("span").html();
		if(flvpath!=""){
			$("#player").children().not("ul").remove();
			$("#player").prepend('<div id="flvHolder"><img src="images/temp/video-player.jpg" alt="" /></div>');
			showVideo(flvpath + ".flv");
			$(".active").removeClass("active");
			$(this).addClass("active");
		}
		return false;
	});
});

function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
        var thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
