$(document).ready(function() { 
	$(".viewTop").colorbox({width:"542px", inline:true, href:"#top-vr"});
	
	$(".faq-Question").click(function() {
		var faqID = $(this).attr("href");
		$(faqID).slideToggle(400);
		$.scrollTo(this, 1000);
		return false;
	});
});

