jQuery(document).ready(function() {
	if(!jQuery.cookie('dashboard')){
		jQuery('#wrapper').addClass('intro');
		jQuery.cookie('dashboard', true, { expires: 365 });
	}
});

