$(document).ready(function(){
	// home 
	$('#news h4:last').css({'border-top':'1px solid #ffc422','padding':'10px 0 5px'});

	// footer
	if ($('#splash').length > 0) {
		$('#footer').css('border-top','none');
	}	
	$('#footer a').css('margin-left','7px');
	
	// sidebar 
	$('.sidebar ul li').click(function(){  
    	window.location=$(this).find("a").attr("href"); 
    	return false;  
	}); 
	
	// faqs
	$('.answer').css('display','none');
	$('#faqs').find('.body h4').click(function(){
		$(this).toggleClass('view');
		$(this).next('.answer').slideToggle(400);
		return false;
	});
	$('#content').find('.question').click(function(){
		$(this).toggleClass('view');
		$(this).next('.answer').slideToggle(400);
		return false;
	});
});
