/*Load js and css files depending on browser view port*/
$(document)
	.ready
	(
	 	function()
		{
			//console.log($(window).width());
			if($(window).height() < 600 || $(window).width() < 1500)
			{
				
				/*If browser view port is less than 600, load static layout*/
				loadjscssfile("ramco-1002/css/style.css", "css") //dynamically load and add this .css file
				loadjscssfile("ramco-1002/js/ramco_base_js.js", "js") //dynamically load and add this .js file
			}
			else
			{
				/*If browser view port is more than 600, load fulide layout*/
				loadjscssfile("ramco-fluide/css/style.css", "css") //dynamically load and add this .css file
				loadjscssfile("ramco-fluide/js/ramco_base_js.js", "js") //dynamically load and add this .js file
			}
		}
	);
/*Load js and css files depending on browser view port*/
/*loadjscssfile*/
function loadjscssfile(filename, filetype)
{
	if (filetype=="js")
	{ //if filename is a external JavaScript file
		var fileref=document.createElement('script')
		fileref.setAttribute("type","text/javascript")
		fileref.setAttribute("src", filename)
	}
	else if (filetype=="css")
	{ //if filename is an external CSS file
		var fileref=document.createElement("link")
		fileref.setAttribute("rel", "stylesheet")
		fileref.setAttribute("type", "text/css")
		fileref.setAttribute("href", filename)
	}
	if (typeof fileref!="undefined")
		document.getElementsByTagName("head")[0].appendChild(fileref)
}
/*loadjscssfile*/
