﻿$(function() {
$('#slider').jqFancyTransitions({ width: 383, height: 139, effect: 'wave' });
});
$(function() {
 $("#footer_link a,.top_info_left a").hover(function() {
        
        $el = $(this);
                
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "white" }, 300);
    
    }, function() {
    
        $el = $(this);
                
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#2E3F1F" }, 300);
    
    });


});
