// JavaScript Document

var $j = jQuery.noConflict();

$j(function($){
	
	/*CLEAR SEARCH FORM*/
	$('#searchform #s').click(function(){
		$(this).attr('value', '');								   
	});
		
	//LOADING GIF
	if($('#loading').length > 0)
	{
		$("#loading").ajaxStart(function(){ 
		  $(this).show(); 
		});
		$("#loading").ajaxStop(function(){ 
		  $(this).hide(); 
		});
	}
	//COMMENT BOX
	$('#commentform #comment').focus(function(){
		$(this).height(200);										  
	});
	
});
