$(document).ready(function(){
	$('#container').click(function(){ window.location.href="mailto: office@deefuse.com" });
	
	$('#container').css('width', '238px');
	$('#container').css('height', '39px');

	handleResize();
});

$(window).resize(handleResize);

function handleResize(){
	
	$('#container').css('left', (Math.round($(document).width()/2)-76)+'px');
	$('#container').css('top', (Math.round($(document).height()/2)+54)+'px');
}
