jQuery.noConflict();
     
// Put all your code in your document ready area
jQuery(document).ready(function($){
$('.gmaps>div').each(function(){
	$(this).css("display","none");
});
$('.gmaps>div:first').css("display","block");
$('.gmapcontrols a:first').addClass("act");
//.removeClass();
$('.gmapcontrols a').each(function(i){
  $(this).click(function(){
  	$('.gmapcontrols a').removeAttr("class");
  	$(this).addClass("act");
    //$('.gmaps div').removeClass();
    //$('.gmaps div:eq(' + i + ')').addClass("active");
    $('.gmaps>div').each(function(){
	$(this).css("display","none");
     });
    $('.gmaps>div:eq(' + i + ')').css("display","block");
return false;
  });
});


});