$(document).ready(function(){
	
	function stretchBG(){
		$("#wrapper").stretchBG();
	}
	
	$(window).bind('resize',function(e){ 
		stretchBG();
	});
	
	stretchBG();
});