/*
 * 
 * Part of article How to detect screen size and apply a CSS style
 * http://www.ilovecolors.com.ar/detect-screen-size-css-style/
 *
 */

var css = "/css/wedding_videography.css";
if (screen.width < 801) css = '/css/wedding_videography_800.css' 
else if (screen.width < 1025) css = '/css/wedding_videography_1000.css'
else if (screen.width < 250) css = '/css/mobile.css'
document.write('<link href="'+css+'" rel="stylesheet" type="text/css">')


