$(document).ready(function() {
	
	
	$(".open").click( function() {
		if ($(".hid").is(":hidden")) {
		$(".hid").show();
		} else {
		$(".hid").hide();
		return false;		
		}
	});
	
	$(".open2").click( function() {
		if ($(".hid").is(":hidden")) {
		$(".hid").show();
		} else {
		$(".hid").hide();
		return false;		
		}
	});

	
});	
