// JavaScript Document
function shwind(wind){

	if ($(wind).css("display") == 'none'){
		$(wind).show('slow');
	}
	else {
		$(wind).hide("slow");	
	}
}
