$(document).ready(function() {
	$('.dropdown2').hover(function() {
		$(this).addClass('active');
		$('.child2').fadeIn('fast');
	}, function() {
		$(this).removeClass('active');
		$('.child2').fadeOut('fast');
	});
	$('.dropdown3').hover(function() {
		$(this).addClass('active');
		$('.child3').fadeIn('fast');
	}, function() {
		$(this).removeClass('active');
		$('.child3').fadeOut('fast');
	});
	$('.dropdown4').hover(function() {
		$(this).addClass('active');
		$('.child4').fadeIn('fast');
	}, function() {
		$(this).removeClass('active');
		$('.child4').fadeOut('fast');
	});
});
