// jQuery Template scripts
jQuery(document).ready(function () {

	// Function to check if an element exists by checking length of jQuery object
	jQuery.fn.exists = function () { return jQuery(this).length > 0; }

	if (jQuery("div.extrainfolinks.help").exists()) {

		jQuery("div.extrainfolinks.help").appendTo("div.category div.pad div.description");
		
	}
	
});