$(document).ready(function() {	
	//$("#contributorsInfo").hover(makeTall,makeShort);

});

function makeTall(){  $(this).animate({"height":75},200);}
function makeShort(){ $(this).animate({"height":50},200);}

showInfo = function(ele){
	$("#" + ele).slideDown();
}

hideInfo = function(ele){
	$("#" + ele).slideUp();
}

loadVideos = function(video){
	var dataString = "v=" + video;
	
	$.ajax({
		   	type: "POST",
		   	url: "videothumbs.cfm",
		   	data: dataString,
			success: 
				function(data){
					$("#thumbsWrapper").html(data);
				},
			error:
				function(xhr, ajaxOptions, thrownError){
					
				},
			beforeSend: //preloader
				function(){
					$("#thumbsWrapper").fadeIn(200).html("Loading thumbs ... please wait");
				},	
			complete: //hide preloader
				function(){
					
				}
				
		   });
	return false;
}

