Drupal.behaviors.ipsos = function(context) {
	$('#horizontal-menu ul li a').hover(function() {
			$(this).next('ul').show().css({position:"absolute"} );
			},
			function () {
				$(this).next('ul').hide(); 
			}
	);
	/*	
	$('li.industry-solutions ul li.industry-services ul').hide();
	$('li.industry-solutions ul li.industry-services').hover(function(){
			$('li.industry-solutions ul li.industry-services ul').show('slow');
			},
			function() {
					window.setTimeout(function(){
					$('li.industry-solutions ul li.industry-services ul').hide("slow");
				},2000);
			}
	);	




	$('li.research-expertise ul li.novaction-forecasting ul').hide();
	$('li.research-expertise ul li.novaction-forecasting').hover(function(){
			$('li.research-expertise ul li.novaction-forecasting ul').show('fast');
			},
			function() {
			window.setTimeout(function(){
					$('li.research-expertise ul li.novaction-forecasting ul').hide("slow");
				},2000);
			}
	);
	
	$('li.research-expertise ul li.ipsos-vantis ul').hide();
	$('li.research-expertise ul li.ipsos-vantis').hover(function(){
			$('li.research-expertise ul li.ipsos-vantis ul').show('fast');
			},
			function() {
			window.setTimeout(function(){
					$('li.research-expertise ul li.ipsos-vantis ul').hide("slow");
				},2000);
			}
	);	
	
	$('li.research-expertise ul li.qualitative ul').hide();
	$('li.research-expertise ul li.qualitative').hover(function(){
			$('li.research-expertise ul li.qualitative ul').show('fast');
			},
			function() {
			window.setTimeout(function(){
					$('li.research-expertise ul li.qualitative ul').hide("slow");
				},2000);
			}
	);

	$('ul li.knowledge-center ul').hide();
	$('ul li.knowledge-center').hover(function(){
			$('ul li.knowledge-center ul').show('fast');
			},
			function() {
					window.setTimeout(function(){
					$('ul li.knowledge-center ul').hide("slow");
				},4000);
			}
	);	
*/
	

	 
	 
	 
	 
};




