(function( $ ){
	$(document).ready(function(){
		
		// Replace submit button
		$('.js-plshidebutton').each(function(){
			$(this).hide().removeClass('js-plshidebutton');
			var c = $(this).attr('class');
			var t = $(this).attr('value');
			$('<a href="#" class="g-asubmit '+c+'" title="'+t+'"></a>').insertAfter($(this));
		});
		jQuery('.g-asubmit').click(function(){
			$(this).parents('form').submit();
			return false;
		});
		
		// Index form tabs
		$('.b-searchvr__tabs-item a').click(function(){
			if ($(this).parent().hasClass('m-resume')) {
				$('.b-searchvr__form').addClass('m-resume');
				$('.b-searchvr__form').attr('action', 'search.php?type=resume');
			} else {
				$('.b-searchvr__form').removeClass('m-resume');
				$('.b-searchvr__form').attr('action', 'search.php?type=vacancy');
			}
			return false;
		});
		
	});
})( jQuery );
