function montre(id) {
	for (var i = 1; i<=100; i++) {
		if (document.getElementById('nav'+i)) {
			document.getElementById('nav'+i).style.display='none';
		}
	}
	if (id) {
		var d = document.getElementById(id);
		if (d) d.style.display='block';
	}
};

$(document).ready(function() {
						   
	// run the scrollbox js
	$('#scroller').jScrollPane();
						   
	// email text replacement
	if($('#input-1-email_1').val() == '') {
	$('#input-1-email_1').val('enter your e-mail address to subscribe');
	};
	$('#input-1-email_1').focus(function() {
	if(this.value != '') {
		$(this).val('');
	};
	}).blur(function() {
	  if(this.value == '') {
		  $(this).val('enter your e-mail address to subscribe');
	  };
	});
  	
	//  menu javascript
  	montre();

});
