﻿$(document).ready(function ($) {
    $.supersized({
        slide_interval: 6000,
        transition: 1,
        transition_speed: 2000,
        slide_links: 'blank',
        slides:
        [
			{ image: 'public/images/home/S00.jpg' },
			{ image: 'public/images/home/S01.jpg' },
			{ image: 'public/images/home/S02.jpg' },
			{ image: 'public/images/home/S03.jpg' },
			{ image: 'public/images/home/S04.jpg' },
			{ image: 'public/images/home/S05.jpg' },
            { image: 'public/images/home/S06.jpg' },
            { image: 'public/images/home/S07.jpg' },
            { image: 'public/images/home/S08.jpg' },
            { image: 'public/images/home/S09.jpg' }
		]
    });

    $('body').click(function () {
        $('.logo-intro').fadeOut('fast', function () {
            $('.footerBoxes').fadeIn().animate({ bottom: "-4px" }, 700, function () {
                $('#footer').animate({ bottom: "0px" }, 700);
            });
            $('#header').delay(500).animate({ top: "0px" }, 700);
        });
    });

    $('.viewport').mouseenter(function (e) {
        $(this).children('a').children('img').stop(true, true).animate({ height: '245', left: '-15', top: '-10', width: '370' }, 500);
        $(this).children('a').children('span').stop(true, true).fadeOut(200);
    }).mouseleave(function (e) {
        $(this).children('a').children('img').stop(true, true).animate({ height: '270', left: '-35', top: '-25', width: '400' }, 300);
        $(this).children('a').children('span').stop(true, true).fadeIn(200);
    });

    $('.viewport-magazine').mouseenter(function (e) {
        $(this).children('a').children('img').stop(true, true).animate({ height: '245', left: '0', top: '-5', width: '370' }, 500);
        $(this).children('a').children('span').stop(true, true).fadeOut(200);
    }).mouseleave(function (e) {
        $(this).children('a').children('img').stop(true, true).animate({ height: '250', left: '-10', top: '-20', width: '390' }, 300);
        $(this).children('a').children('span').stop(true, true).fadeIn(200);
    });



    $('#slideEshop').cycle({
        fx: 'fade',
        timeout: 0,
        speed: 1500
    });

    $('.eshopSlide').hover(function () {
        $('#slideEshop').cycle('resume', true);
        $('.dark-background-shop').fadeOut('fast');
    }, function () {
        $('#slideEshop').cycle('pause');
        $('.dark-background-shop').fadeIn('fast');
    });





});
