var menu1=new Array();
	menu1[0] = "<a href='what_is_digiwallet.php'><div><img src='images/pops/d1_1.jpg' alt='' /></div></a>";
	menu1[1] = "<a href='how_digiwallet_works.php'><div><img src='images/pops/d1_2.jpg' alt='' /></div></a>";
	menu1[2] = "<a href='demo.php'><div><img src='images/pops/d1_3.jpg' alt='' /></div></a>";
	
	var menu2=new Array();
	menu2[0] = "<a href='investors.php'><div><img src='images/pops/d2_1.jpg' alt='' /></div></a>";
	menu2[1] = "<a href='team.php'><div><img src='images/pops/d2_2.jpg' alt='' /></div></a>";
	
	
	function dcstart()
	{
		$('#dropmenudiv a').hover(function() {
		  $(this).fadeTo(100,0.7);
		}, function() {
		  $(this).fadeTo(100,1);
		}); 
	}
	
	$(document).ready(function(){
		$(".email").each(function() {
			var e = $(this).html().replace("-at-","@");
			$(this).html("<a class='blue' href='mailto:"+e+"'>"+e+"</a>");
		});
	});