// JavaScript Document

$(document).ready(					  
					  
		function()
		{
			
			
    		/*$("#example > ul").tabs();*/
			
			
			
			$('#dock').Fisheye(
				{
					maxWidth: 25,
					items: 'a',
					itemsText: 'span',
					container: '.dock-container',
					itemWidth: 65,
					proximity: 80,
					halign : 'center'
									
				}
			)
			
			/*$("#example > ul").tabs({ fx: { opacity: 'toggle' } } );	*/
			
				$("#example > ul").tabs();
			
				$('.faqsBlock h3').toggle(
					 function() {
 					
 					$(this).next('.expandingContent').slideToggle(100);
					$(this).removeClass('inactive').addClass('active');
					return false;
				 },
 
 					function() {
					$(this).next('.expandingContent').hide();	
 					$(this).next('.expandingContent').slideToggle(100);
					
					$(this).removeClass('active').addClass('inactive');
 					return false;
				}
				
				
				

			 );
				
				$('.faqsBlock h4').next('.expandingContent').hide();	
				
				$('.faqsBlock h4').toggle(
					 function() { 	
 					$(this).next('.expandingContent').slideToggle(100);
					$(this).removeClass('inactive').addClass('active');
					return false;
				 },
 
 					function() {
					$(this).next('.expandingContent').slideToggle(100);					
					$(this).removeClass('active').addClass('inactive');
 					return false;
				}
				
				
				

			 );
				
				
			
			
});	
			