$(document).ready(function() {
    $(".specials_block").hover(
                function() {
                    $(this).children().children().attr('src', 'images/specials_hover.png');
                },
                function() {
                    $(this).children().children().attr('src', 'images/specials.png');
                }
            );

    $(".tw_img").hover(
                function() {
                    $(this).attr('src', 'images/home/tw_icon_hover.png');
                },
                function() {
                    $(this).attr('src', 'images/home/tw_icon.png');
                }
            );

    $(".ytb_icon").hover(
        function() {
            $(this).attr('src', 'images/ytb_icon_hover.png');
        },
        function() {
            $(this).attr('src', 'images/ytb_icon.png');
        }
    );
	
	$(".fb_icon").hover(
        function() {
            $(this).attr('src', 'images/fb_icon_hover.png');
        },
        function() {
            $(this).attr('src', 'images/fb_icon.png');
        }
    );
          
   /*
    $("#slider").easySlider({
        auto: true,
        vertical: true,
        continuous: true
    });  
	*/
});
