﻿/***

Blueroom V4 competition js
2009 www.aislondon.com
Andre Head

***/

$(function() {    
    $(".linkButton").hover(
      function () {
         $(this).css({'text-decoration' : 'underline', 'color' : '#535353'});
      }, 
      function () {
        $(this).css({'text-decoration' : 'none', 'color' : '#0090d0'});
      }
    );


});