$(document).ready(function() {

	//Pagenate these elements..
	$("ol.tracks").quickPager({pageSize : "20"});
	$("ul.albums").quickPager({pageSize : "4"});
	$("ul.artist").quickPager({pageSize : "4"});
	$("ol.comments").quickPager({pageSize : "10"});
	$("div.tags").quickPager({pageSize : "10"});

	//Autgrow our textareas
	$('textarea.expanding').autogrow();
	
	//Expanding Biography
	$("#expand-biography, .biography-text").click(function() {
		$('.biography-text').css({ "overflow":"auto", "height":"400px" });
	});
	
	//Submit if element hasClass = active
	$(".expanding").focus(function() {
		if(!$(this).hasClass("active")){
			$(this).val('').addClass("active");
		}
	});
	
	//Expand forms
	$(".toggle").click(function() {
		var container = $(this).parents('.contentContainer:first');
		container.children('form:first').toggle("fast");
		container.children('.small-alert').toggle("fast");
		  return false;
	});
	
});
