 $(document).ready(function() {
	 $('.slideshow_container').cycle({ 
    fx:    'fade', 
    next:   '#nextpic', 
    prev:   '#prevpic',
    pause:   1,
    pager:  '.slideshow_pagination', 
    speed:  300,
   	timeout: 6000,
   	delay: 2500
 	});

	$('.slide').hover(function() {
		$('.slide_title').addClass('slide_title_hover');
		}, function() {
		$('.slide_title').removeClass('slide_title_hover');
	});

 });
 
  	function flipNews(page) {
		$("#news_browse").html("loading...");
		$("#newsheadlines").load("/ajaxable/news.php", {page: page}, function(){
		   // nothing
		 });
	} 
