$(document).ready(function() {
	$("div.contoffer").slideUp(0);
	$first = true;
    $("div.titoffer span").click(function () {
		if ($(this).parent("div.titoffer").next("div.contoffer").is(":hidden")) {
			if($first){
				$(this).hover(function () {
					$(this).css("color","#E11F26");
				}, function () {
					$(this).css("color","#E11F26");
				});
				$(this).parent("div.titoffer").next("div.contoffer").slideDown(200);
				$first = false;	
			}else{
				$("div.titoffer span").css("color","#636466");
				$("div.titoffer span").hover(function () {
					$(this).css("color","#E11F26");
				}, function () {
					$(this).css("color","#636466");
				});
				$(this).css("color","#E11F26");
				$(this).hover(function () {
					$(this).css("color","#E11F26");
				}, function () {
					$(this).css("color","#E11F26");
				});
				$selected = $(this);
				$("div.contoffer:visible").slideUp(200, function(){$selected.parent("div.titoffer").next("div.contoffer").slideDown(200);});
			}
		}else{
			$first = true;
			$("div.titoffer span").hover(function () {
				$(this).css("color","#E11F26");
			}, function () {
				$(this).css("color","#636466");
			});
			$("div.contoffer:visible").slideUp(200);
		}
    });
});