Need to double click button in toogle

Need to double click button in toogle

I have this page if i click a button ,next page ll load in a div , if i click same button again it wont work i need to Double Click it . Here is the Code
Help Me please
  1. $(document).ready(function(){
  2.      
  3.    $('.hindimovie').toggle(
  4.    function()
  5.    {
  6.       $('#middlecontent').load('hindimovielist.php');
  7.    },
  8.    function()
  9.    {
  10.       $('#middlecontent').unload('hindimovielist.php');
  11.    });
  12.    });