$(function() {
	$('#lcol_images .imgbox, #homepage_images .imgbox, #building_card .imgbox, #flat_card .imgbox').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 5000
	});
})
/*
$(document).ready(function() {   
	effects_init();
});

function effects_init() {
	var config = {    
	     sensitivity: 2,
	     interval: 30,
	     over: menu_item_over,
	     timeout: 0,
	     out: menu_item_out
	};	
	$("div#menu div a").hoverIntent(config);
	
	$("table.list tr")
    .bind("mouseover", function(){
    	$(this).css("background-color", "#e6e6e6");
    })
    .bind("mouseout", function(){
    	$(this).css("background-color", "#f4f4f4");
    });
    
   	$("table.list img.transparent").fadeTo(1, 0.25);
   	
    $("input:text, textarea").bind("focus", function() {
		$(this).css("border", "1px solid #231f20");
	})
	.bind("blur", function() {
		$(this).css("border", "1px solid #bd327f");
	});    	
}

function menu_item_over() {
	$(this).parent().children("span").not(".over").animate({ width:"184px" }, "fast");
}

function menu_item_out() {
	$(this).parent().children("span").not(".over").animate({ width:"0" }, "fast");
}
*/