function BrowserChk(){
	var bi = new BrowserInfo();
	/*printProperties(bi);*/
	if(bi.ieMVersion >= 7 || 
	   bi.chrome ||
	   bi.firefoxMVersion >= 2 ||
	   bi.safariMVersion >= 525 ||
	   bi.operaMVersion >=9
	){
		return true;
	}
	return false;
}

function printProperties(obj) {
    var properties = '';
    for (var prop in obj){
        properties += prop + "=" + obj[prop] + "\n";
    }
    alert(properties);
}


function naviHere(n){
	if(!n){
		margintop = 0;		
	}else{
		margintop = 20;
	}

	jQuery(function($){
		$("#navi li").eq(n)
			.css("border-bottom","1px solid #cfadab")
			.css("backgroundColor","#f3e9e9")
			.css("font-size","larger")
			.animate( {
				marginTop: margintop + "px",
				marginBottom:"30px"
			}, 300 )
	});
}


