var name = "#floatMenu";
var menuYloc = null;

$(document).ready(function(){
	
	//$("#box_folder_list, #box_articles_list, .roundedButton, .boxRounded").corner("5px");
	$(".article_img_thumb a, .article_img_lowres a").fancybox({ 'hideOnContentClick': true , 'zoomSpeedIn': 500, 'zoomSpeedOut': 500, 'overlayShow': true, 'overlayOpacity': 0.7 }); 	
	//setInterval ( "slideSwitch(2000, 'slideshow_home_1')", 5000 );	
	
});

//slideshow
function slideSwitch(switchSpeed, idDiv) {
    var $active = $('#'+idDiv+' img.active');
    
    if ( $active.length == 0 ) $active = $('#'+idDiv+' img:last');

    var $next =  $active.next('img').length ? $active.next('img')
        : $('#'+idDiv+' img:first');

    $active.addClass('last-active');
    
    
    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, switchSpeed, function() {
            $active.removeClass('active last-active');
        });
}