jQuery( function($) {

	/* new qtip2 titles! */
	window.QTIP_ARGS = {
		position: {
			my: 'bottom center',
			at: 'top center',
			adjust: {
				y: -20
			}
		}
	};
	$('.info[title],.highlights li[title]').qtip( window.QTIP_ARGS );

	/**
	 * TOGGLE
	 **/
	
	$(".togglebox").hide();

	$('.showtoggle').click(function() {
		$('.togglebox').slideDown('slow');
		// $( 'a[name=contactform]' ).scrollTo($( 'a[name=contactform]' ));
		var self = this;
		setTimeout( function() {
			$( window ).scrollTo( self, {
				duration: 500,
				target: window
			} );
		}, 500 );
		return false;
	});
} );
