// Campus Horizons
$(document).ready(function(){
// 
	$("dl").hover(function () {
      $(this).css({'background-color':'rgb(232,245,254)','border':'1px solid rgb(204,228,245)','padding-right':'10px'});
    }, function () {
      var cssObj = {
        'background-color' : 'rgb(255,255,255)',
		'border':'1px solid rgb(255,255,255)',
		'padding-right':'10px'
      }
      $(this).css(cssObj);
    });
//			// setup FAQs
			$(".answer").css("display","none");
			// operation of reveal toggle
			$("ul.questions>li>a").click(function(){
				$(this).next().slideToggle("fast");
				$(this).next().css('padding','0.5em')
				return false;
			});
			$("#all").click(function(){
				$(".answer").slideDown();
				return false;
				});
});
