$(document).ready(function(){
    $('#featured_listings a').mouseover(function(e){
        var target = $(this.rel);
        target.siblings().removeClass('active');
        target.addClass('active');
        $(this).parent().siblings().removeClass('active');
    });
});

$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'fade'
    });	
});

$('#s2').cycle({ 
    fx: 'fade', 
    speed: 200, 
    timeout: 6000, 
    next:   '#next2', 
    prev:   '#prev2'
	
});
