$('document').ready(function(){
  $('#linkbox').hide();
  $('span.linka').toggle(function() {
    var id = $(this).attr('id');
    $('#linkbox' + id).show(500);
    $.post('clickrecorder.php', {"productID": encodeURIComponent(id)} );
  }, function() {
    var id = $(this).attr('id');
    $('#linkbox' + id).hide(500);
  });
});
   		$( document ).ready( function ()
			{
				$( '#example3' ).scrollFollow();
			}
		);
$("#getw").click(function () { 
      showHeight("window", $(window).height()); 
    });
