// JavaScript Document

	jQuery( document ).ready( function() {
 
			
			// submenus
			var time_on = 100;
			var time_off = 150;
			jQuery( '.information li a' ).hover( function() {
				jQuery( this ).animate( { marginLeft: '9px' }, time_on );
			}, function() {
				jQuery( this ).animate( { marginLeft: '0px' }, time_off );
			} );
			
			
			jQuery( '.information li a' ).hover( function() {
				jQuery( this ).animate( { paddingLeft: '9px' }, time_on );
			}, function() {
				jQuery( this ).animate( { paddingLeft: '0px' }, time_off );
			} );
			
			
			jQuery( '.socials  .socials_title' ).hover( function() {
				jQuery( this ).animate( { paddingLeft: '9px' }, time_on );
			}, function() {
				jQuery( this ).animate( { paddingLeft: '0px' }, time_off );
			} );
			
			
		} );
