$(document).ready(function(){
						   

	$("ul.dropdown li").dropdown();
	
	$(".company").click(function() {
			$(".company").children().hide();					 
	 });
	
	
	$(".next1").click(function() {
							   
		$("#slide").animate({width:"0px"},0);
		$("#slide").css('background-image','url(img/research/research1.jpg)'); 
		$("#slide").animate({width:"0px"},0);	
		$("#slide").animate({width:"500px"});	
    });
	
	$(".next2").click(function() {
		$("#slide").animate({width:"0px"},0);
		$("#slide").css('background-image','url(img/research/research2.jpg)');
		$("#slide").animate({width:"0px"},0);	
		$("#slide").animate({width:"500px"});	
    });

	
	$(".next3").click(function() {
		$("#slide").animate({width:"0px"},0);
		$("#slide").css('background-image','url(img/research/research3.jpg)');
		$("#slide").animate({width:"0px"},0);	
		$("#slide").animate({width:"500px"});	
    });

	
	$(".sproducts")..click(function() {
		$(".iproducts").slideToggle();							
	});
	
	
	
});


$.fn.dropdown = function() {
	$(this).hover(function(){
		$(this).addClass("hover");
		$('> .dir',this).addClass("open");
		$('ul:first',this).css('visibility', 'visible');
	},function(){
		$(this).removeClass("hover");
		$('.open',this).removeClass("open");
		$('ul:first',this).css('visibility', 'hidden');
	});
}



