/************************************************

	Discussions - View Topic

	/includes/js/discussions/view_topic.js

	Copyright © DailyStrength, 2008.

***/

$().ready(function() {
	
	if(document.location.toString().match("#comment_panel")) {
		$("#comment_panel").show(); 
		$("#add_comment").toggleClass('down');
		$.scrollTo($("#wide_full_left"), 800);
		$("#message").focus(); 
	}
	
	$("#add_comment").click(function(){
		$("#comment_panel").toggle(); 
		$("#add_comment").toggleClass('down');
		$("#message").focus(); 
		return false;
	});
	$("#comment_panel a.cancel").click(function(){
		$("#comment_panel").toggle(); 
		$("#add_comment").toggleClass('down');
		return false;
	});
	$("#add_comment2").click(function(){
		$("#comment_panel").toggle(); 
		$("#add_comment").toggleClass('down');
		$.scrollTo($("#wide_full_left"), 800);
		$("#message").focus(); 
		return false;
	});
	
});
