var sfm = { item : {}, fn : {}};

function getDocumentHeight(id) {
 	$(document.getElementById(id)).contents().find('body').css({"min-height": "100", "overflow" : "hidden"});
	setInterval( "$('iframe').height($('iframe').contents().find('body').height() + 20)", 1 );
}


$(function(){

 sfm['parents'].bind('click', function(){
	
	var parent_ul = $(this).closest('ul');
	//only one section active
	// sfm['menu'].find('.subitem').not(parent_ul.find('li')).hide();
	
    $('.subitem', parent_ul).toggle();

  });
  
  
  
  
  
  var $last_menu_items = $('#menu .container ul').slice(-1).addClass('bottom_links');
  // $last_menu_items.eq(0).css({'position' : 'absolute', 'bottom' : '47px'});
  $last_menu_items.eq(0).css({'position' : 'absolute', 'bottom' : '27px'});
  
  
})
