

//tabs
$(document).ready(function(){
	$("#tabs").tabs();
	$("#some").tabs();
});	


//Content toggle function
$(document).ready(function() {
	$(".clickMe").click(function() {
	$(this).parent().next().toggle('normal'); 
	});
});


//Toggle icon change function
$(document).ready(function() {
	$(".clickMe").click(function(){
	var $this = $(this);
	if( $this.is('.active') ) {
	$this.removeClass('active');
	}
	else {
	$this.addClass('active');
	}
	return false;
	});
});


//dialog for MAP
/*
$(document).ready(function() {
	$("#map").dialog({
			autoOpen: false,
			 modal: true,
			 width: 540,	
	});


	$('#showmap').click(function() {
		$("#map").dialog('open');
	});
});
*/







