$(document).ready(function(){

	
	//rollover effects for image buttons
	$("a.bttn").hover(
		function() {
			$(this).stop().animate({"opacity": ".7"}, "fast");
		},
		
		function() {
			$(this).stop().animate({"opacity": "1"}, "fast");
	});
	
	
	//accordion effects
	$(this).hoverAccordionMenu();	//build left menu accordion effects	
	
	/*ie6 hack for mouse over icons on 2nd level. Not part of the plugin. optional!*/
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		//rollover arrow which doesn't work with simple css
		$('ul.menu > li > ul > li').bind("mouseenter", function(e){
			$(this).css("background", "url(ico-arrow-level2.gif) no-repeat");
		});
		$('ul.menu > li > ul > li').bind("mouseleave", function(e){
			$(this).not(".active").css("background", "none");
		});
	}


});
