/**
 * dropdown menu 
 */
<!--//--><![CDATA[//><!--
menuHover = function() {
var menuElements = document.getElementById("menu").getElementsByTagName("LI");
for (var i=0; i<menuElements.length; i++) {
	menuElements[i].onmouseover=function() {
		this.className+=" menuHover";
}
	menuElements[i].onmouseout=function() {
	this.className=this.className.replace(new RegExp(" menuHover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", menuHover);
//--><!]]>

/**
 * facebook comment api
 */
<!--//--><![CDATA[//><!--
window.fbAsyncInit = function() {
FB.init({appId: '129456670398833', status: true, cookie: true,
         xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
  '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
//--><!]]>


