$(document).ready(function() {
	
	// sections
	var sections = ['profilo', 'creazioni'];
	
	// engine
	jQuery.each(sections, function() {
		var sect = this;						   
		
    	$('#' + sect + '-ddheader').hover(
				function() {
					ddMenu(sect, 1);	
				}, 
				function() {
					ddMenu(sect, -1);	
				}
		);
		
		$('#' + sect + '-ddcontent').hover(
				function() {
					cancelHide(sect);	
				}, 
				function() {
					ddMenu(sect, -1);	
				}
		);		
    });
						   
	

});