/* Actions to be fired on window load */
$(document).ready(function() {
	$('#links').css('height', $('#container').height()+80);

});
 
$(window).resize(function() {
	$('#links').css('height', $('#container').height()+80);
});

