$(document).ready(function()	{
	$("div.dropDown").click(function()	{
		$("div.dropDown").children("div.dropContent").slideUp(100);
		if ( $(this).children("div.dropContent").css('display') == 'none' )	{
			$(this).children("div.dropContent").slideDown(100);
			$(this).find("div.dropContent").css('width', $(this).width() + 20 );
		}
	});
	$("div.dropContent ul li a").click(function()	{
		$(this).parent().parent().parent().parent().find("span.selected").html( $(this).html() );
		$(this).parent().parent().parent("div.dropContent").fadeOut(200);
	});
});