$(document).ready(function(){
	/* This code is executed after the DOM has been completely loaded */
	 
	 if ($('#mini-side-navigation').length) {
	 	$(function(){
	 		$('#mini-side-navigation > ul').tabs({
	 			fx: {
	 				opacity: 'toggle'
	 			}
	 		});
	 	});
	 }
});