// JavaScript Document
function fixElements() {
		$("#footer").attr("style","position:absolute; width:900px; margin-left:-450px; left:50%; overflow:hidden; bottom:0;");
}


$(document).ready(function()
{
	$('a#html5').mouseover(function() {
		$(this).parent('div').animate({ width: '185px' },'fast');
  	}).mouseout(function(){
		$(this).parent('div').animate({ width: '75px' },'fast');
  	});
	
	$('a#flash').mouseover(function() {
		$(this).parent('div').animate({ width: '212px' },'fast');
  	}).mouseout(function(){
		$(this).parent('div').animate({ width: '101px' },'fast');
  	});
  
	fixElements();
});
$(window).scroll(fixElements).resize(fixElements);
