jQuery(document).ready(function($){


   $('.podleft').hover(function(){
      $('.podtext', this).animate({bottom:'0px'},{queue:false,duration:500});
   }, function(){
      $('.podtext', this).animate({bottom:'-63px'},{queue:false,duration:500});
   });

   $('.podright').hover(function(){
      $('.podtext', this).animate({bottom:'0px'},{queue:false,duration:500});
   }, function(){
      $('.podtext', this).animate({bottom:'-63px'},{queue:false,duration:500});
   });

   //accordian
   $('.acordion .title').click( function () {
      if($(this).next().is(':visible')) {
	 $(this).next().slideUp();
	 $(this).removeClass('down');
      }else{
	 $(this).next().slideDown();
	 $(this).addClass('down');
      }
   });

});


