

// The following is used within the n3_navFunk()
	//Philosophy array
	var philDivs = ["philRoubaix","philPooh","philEinstein","philSartre","philHeidegger"]
	var philLinks = ["phil1","phil2","phil3","phil4","phil5"]
	
	//Contact array
	var conDivs = ["conContactForm","conConventional"]
	var conLinks = ["con1","con2"]
	
	//Current Links for CSS swap
	var cssCurrentLinkClass = "currentLink"
	
	// Kindler Chase  n3_navFunk ver2.2
	// www.ncubed.com
	function n3_navFunk(arrDivs,arrLinks,divID,linkID) {
		if(!document.getElementById){return};
		var i
		var theDiv, theLink
		for (i=0; i<arrDivs.length; i++) {
			theDiv = arrDivs[i] 
			theLink = arrLinks[i]
			document.getElementById(theDiv).style.display = 'none';
			document.getElementById(theLink).className = '';
		}
		document.getElementById(divID).style.display = 'block';
		document.getElementById(linkID).className = cssCurrentLinkClass;
	}
//End n3_navFunk area.
	
//write some styles that'll hide as needed so those w/o JS can still see the content.
document.write("<link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"/assets/css/roubaix_js.css\" />")


/*if the screen size (not the resolution) is greater than our spec's then let's
	1. change the bg image to a larger flower :)
*/
	var minWidth = 700
	var minHeight = 600
	var bodyWidth = 0;
	var bodyHeight = 0;
	var bodyBgImage
	if(typeof(window.innerWidth)=='number') {
		bodyWidth = window.innerWidth;	  
	} else if( document.documentElement && document.documentElement.clientWidth ) {
		bodyWidth = document.documentElement.clientWidth;
	} else if( document.body && document.body.clientWidth ) {
		bodyWidth = document.body.clientWidth;
	}	
	
	if(typeof(window.innerHeight)=='number') {
		bodyHeight = window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight ) {
		bodyHeight = document.documentElement.clientHeight;
	} else if( document.body && document.body.clientHeight ) {
		bodyHeight = document.body.clientHeight;
	}	
	
	if ((bodyWidth >= eval(minWidth)) && (bodyHeight >= eval(minHeight))) {
		//bodyBgImage = "bg_orchid_rev.jpg";
	} else {
		//bodyBgImage = "bg_orchid_rev_small.jpg";
		document.write("<link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"/assets/css/roubaix_screen_size_small.css\" />");
	}

function n3_this() {
	//document.body.style.backgroundImage = "url(/images/bg_things/" + bodyBgImage + ")";
}

function em_info(){var i,j,x,y,x=
"x=\"783d22346d2065527866343037323d5c22363436366637353666363337353236313639" +
"36643635363738363936653734326565373436353737373236373236313639373436353337" +
"34363932383232333736363532633631323065363336663638373236366435633235363633" +
"64323365363935633232363665363636643631363966343037323663373436366637353666" +
"33613639323631363936653636363738363936663430373265373436353666373536373236" +
"31363236313639333734363937383639363736363532653734363565363336663732363136" +
"36643363323337343639663631336537363635323232323933653633366662333033623664" +
"3563325c223b793d273232303734273b666f72363937343628693d303b6336353364693c78" +
"2e6c3563323235656e67746833363536653b692b3d323634323036297b792b3d3136653230" +
"756e65736336353664366170652827313639366325272b782e323037343673756273746632" +
"3036397228692c32366536363629293b7d79223b6a3d6576616c28782e6368617241742830" +
"29293b783d782e7375627374722831293b793d27273b666f7228693d303b693c782e6c656e" +
"6774683b692b3d3130297b792b3d782e73756273747228692c35293b7d666f7228693d353b" +
"693c782e6c656e6774683b692b3d3130297b792b3d782e73756273747228692c35293b7d79" +
"3d792e737562737472286a293b\";y='';for(i=0;i<x.length;i+=2){y+=unescape('%'" +
"+x.substr(i,2));}y";
while(x=eval(x));}








