$(document).ready(function () {

$('img', '.console-small').width(0);


$('.flag_normal').hover(
        function () {
            $('img', this).stop().animate({ width: '33'}, 'fast');
        }
        ,
        function () {
            $('img', this).stop().animate({ width: '20'}, 'fast');
        });
		
$('img', '.header_images').hover(
        function () {
			$(this).stop().animate({ width: '313'}, 'fast');
        }
        ,
        function () {
            $(this).stop().animate({ width: '290'}, 'fast');
        });			

$('img', '#LogoRow').hover(
        function () {
			$(this).stop().animate({ width: '200'}, 'fast');
        }
        ,
        function () {
            $(this).stop().animate({ width: '225'}, 'fast');
        });

		
});
