/**
 * 19:56 23td apríl 2010
 *
 * general.js
 *
 * by Branislav Zvolensky
 */

// jQuery code
$(document).ready(function(){
   // Error and Flash Messages
   $('div.flash-errors').delay(5000).fadeOut('slow');
   $('div.flash-messages').delay(3000).fadeOut('slow');
   
   
   // DELETE Confirmation
   $('a.delete').click(function(){
     var redirect = $(this).attr('href');
	 if(confirm('Jste si jistý(á)? Tato operace je nezvratná!')){
	    self.location = redirect;
	 }
	 else{
	    return false;
	 }
   });
   
   
   
   // Date picker
   $(function() {
      $("input[name=date]").datepicker();
      $("input[name=on_air_date]").datepicker();
      $("input[name=poll_start_date]").datepicker();
      $("input[name=poll_end_date]").datepicker();
   });
   
   //fancy box
   $('a.image-detail').fancybox();
   $('li.gallery_item a').fancybox();
   //load twitter button
   $('#twitter').load('./tests/tweet_button.html');

   
});

$(window).ready(function(){

   /*
    * Following code set the same height to div #top as body has
    */

   var bodyHeight = $('body').height();
   
   $('#top').height(bodyHeight);

   
   
});
