jQuery(document).ready(function() {
				
				jQuery('.ddtooltip').each(function() {
					
					jQuery(this).DDTooltip();
					
				});
				
				jQuery('.ddnotification').each(function() {
					
					jQuery(this).closeNotification();
					
				});
				
				jQuery('.ddimage-slider').each(function() {
					
					jQuery(this).ddImageSlider();
					
				});
				
				jQuery('.ddtoggle-open, .ddtoggle-closed').each(function() {
					
					jQuery(this).ddToggle();
					
				});
				
				jQuery('.ddtabbed').each(function() {
					
					jQuery(this).ddTabbed();
					
				});
				
			});
