jQuery(document).ready(function()
{
	function resizing()
	{		
		if($('body').innerWidth()<1000)
		{	
			$(".wide").width(1000);
		}
		if($('body').innerWidth()>=1000)
		{	
			$(".wide").width("100%");
		}
	}
	
	resizing();
	
	$(window).resize(function()
	{
		resizing();
	});
})