jQuery.extend( jQuery.easing,
{
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	}
});




jQuery(document).ready(function() {
	//$('.content').delay(2000).slideDown(1800);
	
	$('.numbers').cycle({
	 fx:	'fade',
	 speed: 200,
	 timeout: 2000});

	$('a.tips').cluetip({splitTitle: '|'});
	
	
	//$('#headcontact').effect("pulsate", { times:3 }, 1000);
	
	$('a.print').click(function() {
	window.print();
	return false; });

      


  
  
  
	
	
	});
