//jQuery Plugin: Drop Shadow Text
// call like this: $(element).textDropShadow();
(function(jQuery) {
 jQuery.fn.textDropShadow = function(){
	 jQuery(this).html('<div class="jq-shadow">'+jQuery(this).html()+'</div><div class="jq-regular">'+jQuery(this).html()+'</div>');
	 return $(this);
 }
})(jQuery);

jQuery(document).ready(function(){jQuery('#footer-left, #footer-right, #license-text').each(function(){jQuery(this).textDropShadow();})});

function OnLoadUtils() {
	jQuery('#comment-personaldetails').hide();
	jQuery('#showinfo').show();
	jQuery('#hideinfo').hide();
};

function ShowUtils() {
	jQuery('#comment-personaldetails').slideDown();
	jQuery('#showinfo').hide();
	jQuery('#hideinfo').show();
};

function HideUtils() {
	jQuery('#comment-personaldetails').slideUp();
	jQuery('#showinfo').show();
	jQuery('#hideinfo').hide();
};