
jQuery(document).ready(function() {		
		jQuery("ul.counter a").click(function(e){				
			e.preventDefault();   			
			destination = jQuery(this).attr('href'); 						
			
			if (!(jQuery(this).hasClass('on'))) {							
				jQuery(".all-banners").fadeOut();				
				jQuery(destination).fadeIn();				
				jQuery("ul.counter a").removeClass("on");				
				jQuery(this).addClass("on");						
			}	
		});
		
		/*jQuery(".office-locations-map a").click(function(e){		

			e.preventDefault();
			destination = "." + jQuery(this).attr('href'); 
			jQuery(".tx-officelocation-pi2 div.loc-holder").hide();
			jQuery(".tx-officelocation-pi3 div").hide();	
			jQuery(destination).show();	
				
		});*/
		
		
		jQuery("#speciality-groups li").hover(function(){		
			jQuery('#speciality-groups').find('li').removeClass('active').end().attr('class',jQuery(this).attr('class'));	
			jQuery('#speciality-detail div').hide();
			jQuery('#speciality-detail div.' + jQuery(this).attr('rel')).show();
			jQuery(this).addClass('active');
		});
		
		
		breed = jQuery(".tx-whatwedo-pi1").siblings("p:first");
		
		jQuery(".add-content").html(breed);
		
		//alert(breed);
		
		//jQuery(".tx-whatwedo-pi1").siblings("p:first").addClass("breed");
		
		
		
		
		jQuery(".office-locations-map a").click(function(e){		

			e.preventDefault();
			destination = "." + jQuery(this).attr('href');
			jQuery(".tx-officelocation-pi2 div.loc-holder").css("visibility", "hidden");
			jQuery(".tx-officelocation-pi3 div").hide();	
			jQuery(destination).css("visibility", "visible");
			jQuery(destination).show();	
				
		});
		
		
		


		
		
});
