/* POP UPS */

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=1,resizable=1,width=500,height=400,left = 390,top = 200');");
}

/* NAVIGATION DROP DOWNS */

$(document).ready(function(){

		$('#nav > li').each(function(i){
			$(this).hover(function(){  
				$(this).find('ul.nav2').show();
			},function(){
				$(this).find('ul.nav2').hide();
			});
		});

		
	});
	
/* Cache */

(function(){ 
	/*Use Object Detection to detect IE6*/ 
	var m = document.uniqueID /*IE*/ 
	&& document.compatMode /*>=IE6*/ 
	&& !window.XMLHttpRequest /*<=IE6*/ 
	&& document.execCommand ; 
	
	try{ 
		if(!!m){ 
			m("BackgroundImageCache", false, true) /* = IE6 only */ 
			} 
	}catch(oh){}; 
})();