$(document).ready(function(){
	$(".response").hide();
	
	$(".titlemain").css({"cursor":"pointer", 'font-weight' : 'normal'});
	
	$(".titlemain").hover(function(){
		$(this).css("font-weight","bold");},
		function(){$(this).css("font-weight","normal");}
	);
	
	$(".titlemain").click(function () {
		 $(this).next(".response").slideToggle("fast");
	});
	
	$('.back_top').click(function(){
		$.scrollTo(".container", 1000,{queue:true});
	});
	
});
