$('document').ready(function(){
    // Destaques cycle.
    $('.destaques').cycle({
        fx: 'blindY',
        sync: 1,
        pager: '.paginacao',
        timeout: 10000
    });
    
    // Form select styling.
    try {
	    $("form select.styled").select_skin();
	} catch(err) {
	    // pass.
	}
	
	$('.toggle').click(function(){
        var obj_id = $(this).attr('rel');
        $('#' + obj_id).slideToggle();
        return false;
    });
});
