$(document).ready(function () {

  	var $experiencelink = $('#experiencelink');
	var $HomeFeatureList = $('#HomeFeatureList');
	var height = $HomeFeatureList.height();
	
	$HomeFeatureList.hide().css({ height : 0, opacity: 0 });
   
    $('a#experiencelink').click(function () {
        if ($HomeFeatureList.is(':visible')) {
            $HomeFeatureList.animate({ height: 0, opacity: 0 }, { duration: 300, complete: function () {
                $HomeFeatureList.hide();
            } });
        } else {
            $HomeFeatureList.show().animate({ height : height , opacity: 1 }, { duration: 300 });
        }
        
        return false;
    });
    


    
});
