
(function($) {
   $color = 'silver'; 
   $contact_page = 'contact'
   $telephone = 't: 0845 685 2230&nbsp;&nbsp;e:info@2ls.com';

   $link_style = {
     'font-family' : 'Arial, Helvetica, sans-serif',
     'color' : '#404040',
     'font-size' : '14px',
     'font-weight' : 'normal',
     'text-shadow': 'none'
   };
  
   $tab_style = {
     'background-color': '#eeeeee', 
     'position' : 'absolute',
     'right' : '20px',
     'top' : '0px',
     'padding' : '4px',
     'border-bottom-right-radius': '5px',
     'border-bottom-left-radius': '5px',
   };

   $(document).ready(function(){
       $('<div/>', {id: 'tab-contact'}).css($tab_style).prependTo('.menu-header');
       $('<a/>', {href: $contact_page}).css($link_style).html($telephone).appendTo('#tab-contact');
   });

})(jQuery);

