
	 $().ready(function () {
	  $('.subscribeBoxRgt').hide();	
	 	$('.subscribeLnk').toggle(
			function(event){
				event.preventDefault();
				$(this).siblings('.subscribeBoxRgt').slideDown();
			},
			function(event){
				event.preventDefault();
				$(this).siblings('.subscribeBoxRgt').slideUp();
			}
		);
		$('.closeMe').click(function(event){
			event.preventDefault();
			$(this).parent('.subscribeBoxRgt').slideUp();
		});
	 });
