// JavaScript Document


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.height <= '768') 
{
getcss('LayoutKlein.css') 
}

else 

{
getcss('LayoutGroot.css')
}


