/**
 * 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');
   
   // Correct left-side height
   /*
   var bodyHeight = $('div#mainContent').height();
   var leftSideHeight = $('div.products_menu').height();
   /*alert(bodyHeight+' '+leftSideHeight);*/
   /*
   if(bodyHeight > leftSideHeight){
     $('div.products_menu').height(bodyHeight+'px');
   }
   if(leftSideHeight > bodyHeight){
     $('div#mainContent').height(leftSideHeight+'px');
   }
   */
   // DELETE Confirmation
   $('a.delete').click(function(){
     var redirect = $(this).attr('href');
	 if(confirm('Ste si istý? Táto operácia je nezvratná!')){
	    self.location = redirect;
	 }
	 else{
	    return false;
	 }
   });
   
   // History page hacks
   $('h3.history-title').css({'text-decoration': 'underline', 'cursor': 'pointer'});
   
   $('div.history-text').css({'display': 'none'});
   
   $('div.history-block').click(function(){
     if($('.history-text', this).is(':visible') == true){
       $('.history-text', this).slideUp('fast');  
     }
     else{
       $('.history-text').slideUp('fast');
       $('.history-text', this).slideDown('fast');
     }
   });
   
   //Gallery page hacks Fancybox
   $("a.sales-gallery").fancybox();
   $("a.contact-nav").fancybox();
   
   
   // navBar hover
   $('div.menu-nav-bar .menu-item').mouseover(function(){
     $(this).addClass('hover');
   });
   
   $('div.menu-nav-bar .menu-item').mouseout(function(){
     $(this).removeClass('hover');
   });
   
     
});
