// JavaScript Document
$(document).ready(function() {						   
	$('#widget-sidebar').hoverIntent(function() {
	$(this).animate({
				width:230
				});	
	
		}, function() {
			$(this).animate({
					width:16
					
					});
	
			});
	 $("ul.sf-menu").superfish({
			 animation: {height:'show'}
		}); 
	 $("#accordion").accordion();
});
