function swapflash_right(){
    var jQueryactive = jQuery('.flash_right li');
    var jQuerynext = (jQuery('.flash_right li.active').next().length > 0) ? jQuery('.flash_right li.active').next() : 		 jQuery('.flash_right li:first');
    jQueryactive.animate({opacity : "hide"}, "slow").removeClass('active');
    jQuerynext.animate({opacity : "show"}, "slow").addClass('active');  
}
jQuery(document).ready(function(){
	jQuery('.flash_right li:first').addClass('active'); 
	// Run our swapflash_right() function every 6secs
	setInterval('swapflash_right()', 4000);
});
