$(document).ready(function(){
	$('p#nav').hide();
	$('div.broc-image img').bind('click', function(){
		if($(this).attr('class') == 'selected') {
			$(this).attr('class', '');
			$('div.broc-image img').show();
			$('span.style16').show();
		} else {
			$('div.broc-image img').hide();
			$('span.style16').hide();
			$(this).attr('class' , 'selected');
			$(this).show();
			if($(this).siblings()) {
				$('p#nav').show();
			}
		}
	});

});
