        $(function() {
            $("#abc").lavaLamp({
                fx: "backout",
                speed: 700,
                click: function(event, menuItem) {
                    return false;
                }
            });
        });
$(function () { 
$('#flagi .flags, #flagi1 .flags').each(function()
{
   $(this).find('img').mouseover(function() {
   		$(this).css('border', '1px solid #cdee66');
   })
   if ( !$(this).find('img').hasClass("selected") ) {
   $(this).find('img').mouseout(function() {
   		$(this).css('border', '1px solid #555555');
   })
   }
   
   $(this).qtip(
   { 
      content: $(this).find('img').attr('alt'),
      position: {
         corner: {
            target: 'topMiddle',
            tooltip: 'bottomMiddle'
         }
      },
      style: { 
      	 padding: 4,
      	 background: '#282828',
      	 color: 'white',
         border: {
            width: 1,
            radius: 1,
            color: '#4b4b4b'
         },
         tip: {
            corner: 'bottomMiddle',
            size: { x: 12, y: 6 }
         }
      }
   })
   .attr('title', '');
   
   // Remove alt attribute (IE bug)
   $(this).find('img').attr('alt', '');
})
});