$(document).ready(function()
{
	$("a.showFullDescription").click(function()
	{
    		var the_id = $(this).attr('id');
		$('#shortDesc_'+the_id).slideUp();
		$('#descriptionPanel_'+the_id).slideDown();

		//$("#descriptionPanel_" + the_id).fadeIn("6000",function(){
			//$("#descriptionPanel_" + the_id).load(base_url+"jobs/desc_full/" + the_id);
		//});
		return false;
	});
	
	$("a.showShortDescription").click(function()
	{
	    	var the_id = $(this).attr('id');
		$('#descriptionPanel_'+the_id).slideUp();
		$('#shortDesc_'+the_id).slideDown();

		//$("#shortDesc_" + the_id).fadeIn("6000",function(){
			//$("#descriptionPanel_" + the_id).load(base_url+"jobs/desc_short/" + the_id);
		//});
		return false;
	});
});

