﻿/*
 * 
 * Part of article How to detect screen size and apply a CSS style
 * http://www.ilovecolors.com.ar/detect-screen-size-css-style/
 *
 */

$(document).ready(function() {

	if ((screen.width>1024))
	{
	
	}
	else
	{
		$("#bigbox").css({ marginLeft:"-100px" });
	}
});


