//$(document).ready(function () {
//      $('#imgfade').hide().fadeIn(9000).fadeOut(9000);
// });

$(document).ready(function () {
$('#imgfade').hide()
$('#imgfade').bind('fade-cycle', function() {
    $(this).fadeOut(7000, function() {
        $(this).fadeIn(7000, function() {
            $(this).trigger('fade-cycle');
        });
    });
});

$('#imgfade').each(function(index, elem) {
    setTimeout(function() {
        $(elem).trigger('fade-cycle');
    }, index * 250);
});

});



