// JavaScript Document
//Add a class to the body element based on device size
function addDeviceClass(){
	var myWidth = $(window).width();
	if(myWidth > 1024){
		$('body').addClass('desktop').removeClass('tablet').removeClass('phone');}
	else if (myWidth >= 720 && myWidth <= 1024){
		$('body').addClass('tablet').removeClass('desktop').removeClass('phone');}
	else {
		$('body').addClass('phone').removeClass('desktop').removeClass('tablet');}
}