$(document).ready(function()
{
	
	$('.subscribe_form').addClass('hide');
	
	function windowSize() 
	{
	  var browserWidth = 0;
	  
	  if( typeof( window.innerWidth ) == 'number' ) 
	  {
	    //non IE compatible mode
	    browserWidth = window.innerWidth;
	  } 
	  else( document.documentElement && ( document.documentElement.clientWidth ) ) 
	  {
	    //for IE compatible mode
	    browserWidth = document.documentElement.clientWidth;
	  } 
	  
	  return browserWidth;
	}
	
	var bodyClass = document.getElementsByTagName('body')[0];
	
	if(windowSize() <= 1265)
	{
		bodyClass.className = "windowSize";
	}
	else
	{
		if(myBody.className.length)
		{
			bodyClass.removeAttr('class');
		}
	}
});
