$(".toggle-control")
	.click(function(event){
		event.preventDefault();
		$(".labels-bottom").toggle();
		$(".toggle-icon").toggle();
	}
);

$(".admin-del")
	.click(function(event){
		var id = $(this).parent().attr("id");
		event.preventDefault();
		$(this).toggle();
		$("." + id + "").toggle();
	}
);

$(".admin-del-no")
	.click(function(event){
		var id = $(this).parent().parent().attr("id");
		event.preventDefault();
		$(this).parent().toggle();
		$("#" + id + " .admin-del").toggle();
	}
);

$("#showroom-wrapper")
	.mouseover(function(event){
		$(".showroom-control").show();
	}
);

$("#showroom-wrapper")
	.mouseout(function(event){
		$(".showroom-control").hide();
	}
);

//Showroom JS
$('#showroom-images').cycle({ 
    fx:     'fade', 
    speed:   1000, 
    timeout: 5000, 
    next:   '.control-right', 
    prev:   '.control-left' 
});

//Thumbs
$('.thumb-normal')
	.mouseover(function(event) {
		var id = $(this).attr("id");
		$(this).hide();
		$('.' + id + '.thumb-hover').show();
	}
);

$('.thumb-hover')
	.mouseout(function(event) {
		var id = $(this).attr("id");
		$(this).hide();
		$('.' + id + '.thumb-normal').show();
	}
);

