$(document).ready(function() {
  $('.cycler').cycle({
		fx:    'fade', 
		speed:  3500 
	});
  $('a.popup').click(function() {
    href = $(this).attr('href');
    title = $(this).text();
    window.open(href,title,'scrollbars=yes,height=400,width=500');
    return false;
  })
});
