$(document).ready(function() {
	$('.clickMe').hover(function() {
		$('.dropdown', this).stop(false,true).slideDown(200);
	    },function() {
		$('.dropdown', this).stop(false,true).slideUp(200);
	    });
    });
