jQuery(document).ready(function(){

	//用户协议
	jQuery(".xieyi").toggle(function(){
		jQuery(".xieyiText").fadeIn();
	},function(){
		jQuery(".xieyiText").fadeOut();
	});

	
	//faq.html
	jQuery(".loadingBox").load("aboutReg.html");
	
	jQuery(".loadinglink").click(function(){
		jQuery(".loadinglink").removeClass("now");
		jQuery(this).addClass("now");
		jQuery(".loadingBox").html("<div style='text-align:center;padding:100px 0;font-family:Tahoma'>loading...</div>");
		jQuery(".loadingBox").empty().load(jQuery(this).attr("link"));
		return false;
	});
	

	//会员心声
	heartfeltWishes();

	//立即前往邮箱确认帐户
	var mail_array = jQuery("#mailURL").text().split("@");
	var mail = mail_array[1];
	//jQuery("#goMail").attr("href","http://"+mail);


});


//会员心声
var Wishes = new Array (
	'<td><img src="images/randomPic/0.jpg" alt="" title="" /></td><td><p>很喜欢这种方式的调查，这就是民意嘛，愿更多的人参与进来，让我们的民意为我们服务。</p><p class="textRight">------冯素莺</p></td>',
	'<td><img src="images/randomPic/1.jpg" alt="" title="" /></td><td><p>我是通过同事介绍过了的，挺好的，能了解和学习很多东西。 </p><p class="textRight">------侯小雨</p></td>',
	'<td><img src="images/randomPic/2.jpg" alt="" title="" /></td><td><p>调查快车网给我带来很多信息，很喜欢，希望得到更多的积分！！ </p><p class="textRight">------冯越</p></td>',
	'<td><img src="images/randomPic/3.jpg" alt="" title="" /></td><td><p>希望大家在DiaoChabus 快乐 感谢DiaoChabus,希望我们的网站越做越大。 </p><p class="textRight">------袁怀君</p></td>',
	'<td><img src="images/randomPic/4.jpg" alt="" title="" /></td><td><p>希望我们国家早日走出经融危机,希望大家多多挣钱.</p><p class="textRight">------胡义理</p></td>',
	'<td><img src="images/randomPic/5.jpg" alt="" title="" /></td><td><p>对所有这类问题发表我的意见，这很重要。调查大多很有趣。</p><p class="textRight">------黄思琪</p></td>',
	'<td><img src="images/randomPic/6.jpg" alt="" title="" /></td><td><p>我喜欢表达我的观点,并且还可以获得可观的奖励真的很不错。 </p><p class="textRight">------蔡风涛</p></td>',
	'<td><img src="images/randomPic/7.jpg" alt="" title="" /></td><td><p>作为一个消费者,DiaoChabus 调查是我将自己的想法告诉公司的一个捷径。</p><p class="textRight">------刘雨荷</p></td>'
);

function heartfeltWishes(){
		randomWishes= Math.floor((Math.random() * Wishes.length));
		jQuery(".heartfeltWishes tr").html(Wishes[randomWishes]);
}
