window.onresize = function()
{
	checkResize();
};
window.onload = function()
{
	checkResize();
};
function checkResize()
{
	var myWidth = 0;
	if( typeof( window.innerWidth ) == 'number' )
	{
		myWidth = window.innerWidth;
	}
	else if( document.documentElement && document.documentElement.clientWidth)
	{
		myWidth = document.documentElement.clientWidth;
	}
	else if( document.body && document.body.clientWidth )
	{
		myWidth = document.body.clientWidth;
	}
	if(myWidth < 1050)
	{
		document.getElementById("inside_soc").style.display = 'none';
		document.getElementById("social_bottom").style.display = 'block';
	}
	else
	{
		document.getElementById("inside_soc").style.display = 'block';
		document.getElementById("social_bottom").style.display = 'none';
	}
}

