Event.observe(window, 'load', function(){
  console.log(window.location);
  $$('div.slide-box div.content a').each(function(el){
    console.log(el.href);
    if(window.location == el.href)
    {
      //alert(el.href)
    }
  })
});

// jQuery.noConflict();
// (function($){
//   $(document).ready(function() {
//     $('div.slide-box a.control_disappear').each(function(index) {    
//       setTimeout(function() {
//         $(this).trigger('click')
//         console.log('var_or_string' + new Date);
//       }, 3000);
//     });
//   });
// })(jQuery);
