(function ($) {
	$(function () {
		$.scrollTo.defaults.axis = 'y';
		// $.scrollTo( 0 ); //reset the screen to (0,0)

		$('#accordion-menu').accordion({
			header: '.accordion-item',
			animated: false,
			alwaysOpen: false,
			autoheight: false,
			active: true
		});

		$('#getintouch-form').hide();

		$('a.getintouch, a.show-form').click(function() {
			$('#embedded_form').fadeIn();

			$.scrollTo('#embedded_form_head', 1000, {offset: {}, onAfter: function () {}});

			return false;
		});

		$('a#getintouch-cancel').click(function() {
			$('#embedded_form').slideUp();
			// $.scrollTo( 'body', 1000, {offset: {} } );

			return false;
		});

        $('.media-mini-floated').media({ width: 192, height: 144, caption: false, params: { 'uiMode': 'none', 'autoStart': '1' } });
        $('.media-mini-floated-loop').media({ width: 192, height: 144, caption: false, params: { 'uiMode': 'none', 'autoStart': '1', 'PlayCount': '9999' } });
        $('.media-mini-floated-controls').media({ width: 192, height: 184, caption: false, params: { 'uiMode': 'mini', 'autoStart': '0' } });
        $('.media-large').media({ width: 500, height: 355, caption: false, params: { 'uiMode': 'none', 'autoStart': '1', 'PlayCount': '9999' } });
        
        $('.scroll_inline_embedded_form').click(function() {						
			$.scrollTo('#embedded_form', 1000, {offset: {}, onAfter: function () {}});
			return false;
		});
        

	});
})(jQuery);
