/*  Onload Functions  */
jQuery(document).ready(function(){
	Dropdown.init();
	ActiveState.init();
	TopNavFx.init();
});


var Dropdown = {
	init : function(){
		jQuery("#dropdowns").find("li").hover(function() {
			   jQuery(this).find("p").slideDown("fast");
			 }, function() {
			   jQuery(this).find("p").slideUp("fast");
			 });
		}
	};

var TopNavFx = {
	init : function(){
		jQuery("#topnav").find("li").not("li.active").hover(function() {
			   jQuery(this).find(".left").css({ backgroundImage:"url('/oreis/images/topnav-over-left.gif')" });
			   jQuery(this).find(".right").css({ backgroundImage:"url('/oreis/images/topnav-over-right.gif')" });
               jQuery(this).addClass("active");
			 }, function() {
			  jQuery(this).find(".left").css({ backgroundImage:"url('/oreis/images/topnav-left.gif')" });
			   jQuery(this).find(".right").css({ backgroundImage:"url('/oreis/images/topnav-right.gif')" });
               jQuery(this).removeClass("active");
			 });
		}
	};