// JavaScript Document

jQuery(document).ready(function()
{
	var width;
	width = jQuery(window).width();
	
	//alert(height);
	
	if ( width < 1025 )
	{
		jQuery('head').append('<link rel="stylesheet" href="/viewport.css" type="text/css" />');
	}
});
