/**
 * @author Thanhphong
 * thanhphong@mego.com.vn
 * phongjalvn@gmail.com
 */
$(document).ready(function(){
    $('#banner').cycle('fade');
    $('#row1 .col3, #col2 .row1').cycle({
        fx: 'scrollUp',
        speed: 1000,
        timeout: 5000
    });
    $('#menu ul li').hoverIntent(function(){
        $('>ul', $(this)).slideDown();
    }, function(){
        $('>ul', $(this)).slideUp();
    })
})
