﻿/// <summary>
/// © XTRA | Estetica e tecnologia
/// Email: info@xtra.it
/// </summary>

// Page: Ready
$(document).ready(function() {

    var zoom = 1.1;
    var move = -15;

    $('.LinkButton_NewsList').hover(function() {

        width = $('.List_Image_Container').width() * zoom;
        height = $('.List_Image_Container').height() * zoom;

        $(this).find('.Image_Frame').stop(false, true).animate({ 'width': width, 'height': height, 'top': move, 'left': move }, { duration: 300 });
    },
	function() {

	    $(this).find('.Image_Frame').stop(false, true).animate({ 'width': $('.List_Image_Container').width(), 'height': $('.List_Image_Container').height(), 'top': '0', 'left': '0' }, { duration: 300 });
	});

});
