$(document).ready(function () {
    var move = -15;
    var zoom = 1.1;
    $('.zitem').hover(function () {
        width = 166 * zoom;
        height = 51 * zoom;
        $(this).find('img').stop(false, true).animate({
            'width': width,
            'height': height
        }, {
            duration: 200
        })
    }, function () {
        $(this).find('img').stop(false, true).animate({
            'width': '166',
            'height': '51',
            'top': '0',
            'left': '0'
        }, {
            duration: 100
        })
		
			
		
    });
    $('#logo').click(function () {
        window.location = '/'
    });
	$('.accordion .accordion-title').next('.accordion-content').hide(0.1);
    $('.accordion > .accordion-title').click(function () {
 			var selfClick = $(this).next('div:first').slideToggle();
        if (selfClick) {
               $(this).parent().find('> div:visible').hide();
           return	;   
        }
		 
        $(this).parent().find('> div:visible').slideToggle();
        $(this).next('div:first').slideToggle()
    })
});
