jQuery(document).ready(function() {
	//jQuery('#more_info, #less_info').click(function(){
	jQuery('#more_info, #less_info').click(function(){
		if (jQuery("#description_cattegory_complete").is(":hidden")) 
		{
			jQuery("#description_cattegory_short").css("display","none");
			jQuery("#description_cattegory_complete").css("display","block");
			/*jQuery("#description_cattegory_complete").show("slow");
			jQuery("#description_cattegory_short").slideUp("slow");*/
		}
		else
		{
			jQuery("#description_cattegory_complete").css("display","none");
			jQuery("#description_cattegory_short").css("display","block");
			/*jQuery("#description_cattegory_short").show("slow");   
			jQuery("#description_cattegory_complete").slideUp("slow");*/
		}
	});
});
function submit_form(this_id){
	jQuery('#' + this_id).submit();
}
