﻿$(document).ready(function () {
    $('.menu-image').hover(function () {
	if($(this).hasClass('active') != true && $(this).hasClass('no-animate') != true)
	{
        $(this).stop().animate({ backgroundColor: $(this).css('color') }, 400);
		}
    }, function () {
		if($(this).hasClass('active') != true && $(this).hasClass('no-animate') != true)
	{
		var orgColor = 'White';
        var test = $(this).attr('alt');
        var backColor;
        if ($(this).attr('alt') == "") {
            backColor = orgColor;
        }
        else
            backColor = $(this).attr('alt');
        $(this).stop().animate({ backgroundColor: backColor }, 400, 'linear');
		}
    }

    );
	var win = $(window).height();
	if(win < 774)
	$('#left-side-wrapper').css('position','absolute');
	$(window).resize(function(){
		if($(window).height() < 774)
		$('#left-side-wrapper').css('position','absolute');
		else
		$('#left-side-wrapper').css('position','fixed');
	});
});
