function dropdown_colapse(){
	$('.contentContainer').css('margin-top', '0px');
	$('#dropdown div').not('#fill').click(function(){
			window.location=$(this).find("a").attr("href");
			return false;
	});
	$('#dropdown > div > img').removeClass('hidden').css({'display':'block', 'cursor':'pointer'});
	$('#dropdown #fill').height($('#dropdown img:eq(0)').height() + $('#dropdown > div > a:eq(0)').height());
}