jQuery(function() {
	this.currentPaddingLeft = 10;

	// animate left menu items: increase/decrease padding-left on hover
	jQuery('#side_menu ul.main li a, aside ul.main li a').hover(	
		function() {
			jQuery( this ).stop().animate({paddingLeft: '30px'}, 200);
		},
		function() {
			jQuery( this ).stop().animate({paddingLeft: '10px'}, 200);
		}
	);
	jQuery('#side_menu ul.my li a, aside ul.my li a').hover(	
		function() {
			jQuery( this ).stop().animate({paddingLeft: '40px'}, 200);
		},
		function() {
			jQuery( this ).stop().animate({paddingLeft: '20px'}, 200);
		}
	);

	/*
	// animate main menu red buttons: increase/decrease font-size on hover
	jQuery('#main_menu li a.red').hover( 
		function() { jQuery( this ).stop().animate({fontSize: '18px'}, 200); }, 
		function() { jQuery( this ).stop().animate({fontSize: '14px'}, 200); } 
	);

	// animate main menu blue buttons: increase/decrease font-size on hover
	jQuery('#main_menu li a.blue').hover( 
		function() { jQuery( this ).stop().animate({fontSize: '15px'}, 200); }, 
		function() { jQuery( this ).stop().animate({fontSize: '13px'}, 200); } 
	);

	// animate any anchor button (search agent button): increase/decrease font-size on hover
	jQuery('#content a.button').hover( 
		function() { jQuery( this ).stop().animate({fontSize: '18px'}, 200); }, 
		function() { jQuery( this ).stop().animate({fontSize: '14px'}, 200); } 
	);

	// animate job application items on hover:
	// - change background to slight yellow
	// - increase/decrease job application logo size
	// - change 'view job' link to red
	jQuery('div.vacature').hover(
		function() {
			jQuery( this ).stop().animate({backgroundColor: '#FFC'}, 200);
			jQuery( 'div.logo img', this ).stop().animate({width: '130%'}, 200);
			jQuery( 'div.more a', this ).stop().animate({color: 'red'}, 200);
		}, 
		function() { 
			jQuery( this ).stop().animate({backgroundColor: '#FFF'}, 200); 
			jQuery( 'div.logo img', this ).stop().animate({width: '100%'}, 200);
			jQuery( 'div.more a', this ).stop().animate({color: '#666'}, 200);
		}
	);
	*/
});


