
//jQuery.noConflict();
$(document).ready(function($){
  
  //$("#tabList > ul").tabs({ fx: { opacity: 'toggle' } });
  
  $('.animation').cycle({ 
    fx:    'fade', 
    speed:    1000, 
    timeout:  2500 
 });
  
  $(".popup").click(function(){ 
    window.open($(this).attr("href")); 
    return false; 
	}); 
});