/* zoolution labs*/
/* JQuery Functions */

/* Random Integer */
function GetRandom( min, max ) {

      if( min > max ) {

              return( -1 );

              }

              if( min == max ) {

              return( min );

              }

    
              return( min + parseInt( Math.random() * ( max-min+1 ) ));
      }

function submenuHide(){$('#submenu').slideDown(1500);}

/* Document Ready Functions */
 $(document).ready(function(){
   
	/* Side Bar Image Overlay */   
    $('#short_info p').hide();
	
	var y = $('#short_info p').size();
	x = GetRandom(1, y);
	$('#short_info #short_info_text_'+x).show('slow');
	
	
	$('#panorama_text p').fadeOut();
	
	var z = $('#panorama_text p').size();
	x = GetRandom(1, z);
	$('#panorama_text_'+x).fadeIn(2000);
	
	

   	$('.page_post_preview img').width('20');
   	
   
   	
    
       
  /* Ende Document Ready */ });
  
  
  
  

