var _timerinmiliseconds = 3000;

jQuery(document).ready(function($){
	
	$('.article_separator:last').remove();
	
	$(document).ready(function() {
		$('.bbox').click(function() {
			if ($(this).find('a').attr('href')) {
				document.location.href = ($(this).find('a').attr('href'));
			}
		});
	});
    
});

function togglebanner(){
	jQuery('.slide:first').fadeOut("fast", function(){
		jQuery(this).insertAfter(jQuery('.slide:last'));
		jQuery('.slide:first').fadeIn("fast", function(){
            setTimeout('togglebanner();', _timerinmiliseconds);
        });
    });	
}

