// JavaScript Document

$(document).ready(function(){
	
	$('.answer_box').hide();
	$('.question_box a').click(function() {
		$(this).prev('.answer_box').slideToggle();
		if ($(this).hasClass('answer-box-less-link')) {
			$(this).removeClass('answer-box-less-link');
			$(this).html('Read More');
		} else {
			$(this).addClass('answer-box-less-link');
			$(this).html('Read Less');
		}		
	});
	
	$("#login-username").placehold({
		 placeholderClassName: "Username"
	});
	
	$("#login-password").placehold({
		 placeholderClassName: "Username"
	});
	
});

