jQuery.noConflict();
jQuery( document ).ready(function(){

	jQuery( '#nl_slide_close' ).click(function(){
		mw3nl.close();
	});

	jQuery( '#nl_subscribe' ).click(function(){
		jQuery('#subscribe').submit();
	});

	


	var mw3nl = {

		element: '#nl_slide',
		duration: 2000,

		step1: function(){

			 jQuery( mw3nl.element ).show();

			 jQuery( mw3nl.element ).animate({
				'bottom': '-70'

			}, mw3nl.duration);

		},

		step2: function(){

			 jQuery( mw3nl.element  ).animate({
				'bottom': '0'

			}, mw3nl.duration);

		},

		close: function(){

			jQuery( mw3nl.element ).animate({
				'bottom': '-140'

			}, 1000)

		}


	}

	setTimeout(function(){

		mw3nl.step1();

	}, 5000);


	jQuery( '#field_12' ).click(function(){

		mw3nl.step2();

	});


});

