$(function(){

//string strpfid = 


  /****************
   Initialize
   ****************/
	$(document).ready(function(){
		$("#items_container").css({
	    height:"700px",
	    position:"relative"
	  });
	
	  $("#items").css({
	    width:"6300px",
	    position:"absolute",
	    left:"0",
	    top:"0"
	  });
	
	  $(".item").css({
	    float:"left"
	  });
		
		if (location.hash) var person = $("#item_selecter #btn_" + location.hash.replace(/^#/g, ""));
		
		if (person) {
			window.scrollTo(0,0);
			person.addClass('selected');
			$("#items").css('left', 0 - $(location.hash).position().left );
		}
		else {
			$("#item_selecter li:first-child a").addClass('selected');
		}
		
	});

  /****************
   Click Event
   ****************/

  $('#item_selecter a').click(function(){
    $("#items").animate(
      { left: 0 - $( $(this).attr('href') ).position().left },
      "normal",
      function(){}
    );
    return false;
  });

});
