$(document).ready(function(){
   

	
	$(".smallFlag").mouseover(function(){
	
	// Link styling properties
	
    $(this).css({'color':'#fff'});
    $(this).css({'cursor': 'hand'});
    $(this).css({'cursor': 'pointer'});
	
		// Tooltip styling properties
		
		$(this).children(".tooltip").css({'visibility':'visible', 'border' : '#000'});
	  
	  $(this).css({zIndex:6000});  
	    
	});
	

  $(".smallFlag").mouseout(function(){
  
	  // Link styling properties
	  
	  $(this).css({'color':'#0099cc'});
	  $(this).css({'cursor': 'default'});
	  
	  // Tooltip styling properties
	  
	  $(this).children(".tooltip").css({'visibility':'hidden'});
	
	  $(this).css({zIndex:1}); 
      
  });


});