﻿$(document).ready(function () {

    $('#cycle1').jflickrfeed({
        limit: 10,
        qstrings: {
            id: '37567693@N08',
			tags: 'cycle1'
        },
        itemTemplate: '<li><img src="{{image}}" alt="{{title}}" /><div>{{description}}</div></li>'
    }, function (data) {
        $('#cycle1 div').hide();
        $('#cycle1').cycle({
            timeout: 4000
        });
        $('#cycle1 li').hover(function () {
            $(this).children('div').show();
        }, function () {
            $(this).children('div').hide();
        });
    });

    $('#cycle2').jflickrfeed({
        limit: 10,
        qstrings: {
            id: '37567693@N08',
			tags: 'cycle2'
        },
        itemTemplate: '<li><img src="{{image}}" alt="{{title}}" /><div>{{description}}</div></li>'
    }, function (data) {
        $('#cycle2 div').hide();
        $('#cycle2').cycle({
            timeout: 7000
        });
        $('#cycle2 li').hover(function () {
            $(this).children('div').show();
        }, function () {
            $(this).children('div').hide();
        });
    });

    $('#cycle3').jflickrfeed({
        limit: 10,
        qstrings: {
            id: '37567693@N08',
			tags: 'cycle3'
        },
        itemTemplate: '<li><img src="{{image}}" alt="{{title}}" /><div>{{description}}</div></li>'
    }, function (data) {
        $('#cycle3 div').hide();
        $('#cycle3').cycle({
            timeout: 5000
        });
        $('#cycle3 li').hover(function () {
            $(this).children('div').show();
        }, function () {
            $(this).children('div').hide();
        });
    });

    $('#cycle4').jflickrfeed({
        limit: 10,
        qstrings: {
            id: '37567693@N08',
			tags: 'cycle4'
        },
        itemTemplate: '<li><img src="{{image}}" alt="{{title}}" /><div>{{description}}</div></li>'
    }, function (data) {
        $('#cycle4 div').hide();
        $('#cycle4').cycle({
            timeout: 8000
        });
        $('#cycle4 li').hover(function () {
            $(this).children('div').show();
        }, function () {
            $(this).children('div').hide();
        });
    });

});
