$(document).ready(function() {
    var cont_left = 0;
    //$('#home-blocks').position().left;
    $('#home-blocks a img').hover(function() {
        // hover in
        $(this).parent().parent().css('z-index', 1);
        $(this).animate({
            height: '237',
            width: '176',
            left: '-=10',
            top: '-=10'
        },
        200);
    },
    function() {
        // hover out
        $(this).parent().parent().css('z-index', 0);
        $(this).animate({
            height: '217',
            width: '156',
            left: '+=10',
            top: '+=10'
        },
        'slow',
        'easeOutElastic');
    });

    if ($(window).width() < 1040) {
        spacer = 166;
		//986
		$('#home-blocks').css({'width':'986px', 'margin-left':'-493px'});
		$('#block-holder').css({'width':'986px'});
    } else {
        spacer = 176;
		//1036
		$('#home-blocks').css({'width':'1036px','margin-left':'-518px'});
		$('#block-holder').css({'width':'1036px'});
    }
	
    $('#home-blocks .block-image').each(function(index) {
        var left = (index * spacer) + cont_left;
        $(this).css({
            'left': left + 'px'
        });
        //$(this).find('img').css({'width':'156px','height':'217px'});
        $(this).find('img').animate({
            height: '217',
            width: '156'
        },
        0);
    });
});
