<!--
function getcss(cssfile){
loadcss = document.createElement('link')
loadcss.setAttribute("rel", "stylesheet")
loadcss.setAttribute("type", "text/css")
loadcss.setAttribute("href", cssfile)
document.getElementsByTagName("head")[0].appendChild(loadcss)
}

if(screen.width < '1280')
// Defines the resolution range you're targeting (less than 1280 pixels wide in this case)
{
getcss('css1/itsfine_menu_800.css')
// Defines the .css file you want to load for this range (800x600.css)
}

else
{
getcss('css1/itsfine_menu.css')
//This else statement has "if" condition. If screen is 1280 or over
}
//-->





