﻿
(function($){

	$.fn.toggler = function(options)
	{
		return this.each(function() 
		{
			$(".call-us a").click(function()
			{
				$(".contacts").slideToggle(1000);
				$(this).toggleClass("call-us-active"); 

				return false;
			});
		});
	};

})(jQuery);

