function fixedHeight(){
	var div_height = $("#content").height();
	$("#footer").css("padding-top", div_height + 60);
}

$(document).ready(function(){
	$(".tweet").tweet({
	     join_text: "auto",
	     count: 10,
		 query: "#ccvsvm",
	     loading_text: "loading tweets...",
	   }, fixedHeight());


	  $('a[rel*=facebox]').facebox();


});


