$(document).ready(function() {
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------*/	

	// <Smart Menu js>
	$(".smartmenubox").hide();
	$(".smartmenu a.plus").toggle( function(){
		$(this).parents(".smartmenu").find("div.smartmenubox").show("slide", { direction: "up" }, 400);
		$(this).addClass("close");
	},function(){
		$(this).parents(".smartmenu").find("div.smartmenubox").hide("slide", { direction: "up" }, 400);
		$(this).removeClass("close");
	});


        //jobs list show hide
       $(".expand-button").toggle(
       function(){
              $height = $(this).parent().height();
              if($height > 98) {
                     $(this).closest('.description').animate({ height: $height + 'px' }, 1000 );
                     return false;
              }
        },
        function() {
               $(this).closest('.description').animate({ height: '98px' }, 1000 );
               return false;
        }); 
	
		
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
})

