$(function(){

	$(".table_full tr:even").addClass("alt");
	
	$(".table_full tr").mouseover(function() { $(this).addClass("over"); }).mouseout(function() { $(this).removeClass("over");});

	$('#logout').click(function() {
    Boxy.confirm("Are you sure you want to logout?", function() { window.location = "lib/logout.php"; }, {title: 'Confirm Logout'});
    return false;
    });
  
	$("#accordion").accordion({
	   event: "mouseover",
	   header: "h3"
	});
	    
	jQuery('ul.floorbroker').superfish();

 $("table.table_full tr:even").addClass("even");
 $("table.table_full tr:odd").addClass("odd");
 
 $("div.scrollable").scrollable({
    interval: 2000,
    loop: true
  }); 
  
});
