// JavaScript Document
$(document).ready( function(){
	//Bug Fix IE6
	$("#footerWrap").css('width', $("body").innerWidth() );
});
//Bug Fix IE6
$(window).resize(function(){ $("#footerWrap").css('width', $("body").innerWidth() ); });