/**
 * @author Wasyl
 */


$(document).ready
(
	function()
	{
		/*
		$("ul.sf-menu").superfish({
	        animation: {height:'show'},   // slide-down effect without fade-in
	        delay:     1000               // 1.2 second delay on mouseout
	    });
	    */
		$("#accordion").accordion();		
		$('.right').hover(
			function(){
				$(this).css('z-index',100);
				
			},
			function(){
				$(this).css('z-index',0);
				
			}
		);
		
		$('.left').hover(
				function(){
					$(this).css('z-index',100);
					
				},
				function(){
					$(this).css('z-index',0);
					
				}
		);
		
		$('.topMenu').hover(
				function(){
					$(this).css('z-index',100);
					
				},
				function(){
					$(this).css('z-index',0);
					
				}
		);
	}
);

