/**
 * @author fred
 */

function submitForm(id) {

 document.forms[id].submit();

 }
 
window.onResize = function () { 
checkWidth(); 

};
 
 
function checkWidth() { 
alert("fsd");


}

$(document).ready(function () {
				resize();
			});



function resize() {
   if($(window).width() < 1060) {
		margin = -30;
		$("#container").css("margin-left",margin);
		$("#container").css("width","1020px");
		$("#containerCon").css("padding-right","0px");
	
	} else {
		$("#container").css("margin","0 auto");
		$("#container").css("width","1060px");
		$("#containerCon").css("padding-right","40px");
	}
};

var resizeTimer = null;
$(window).bind('resize', function() {
   if (resizeTimer) clearTimeout(resizeTimer);
   		resizeTimer = setTimeout('resize()', 800);
});
