$(document).ready(function ()
{
 $('#butContact').mouseover (function ()
 {
  $(this).hide();
  $(this).css('background-position','50% -29px');
  $(this).fadeIn('normal');
 });

 $('#butContact').mouseout (function ()
 {
  $(this).hide();
  $(this).css('background-position','50% 0');
  $(this).fadeIn('normal');
 });

 // Ads
 $("#CarouselAdHorizontal").jCarouselLite ({btnNext:    "#ContentAdHorizontalRight",
                                            btnPrev:    "#ContentAdHorizontalLeft",
                                            auto:       4000,
                                            visible:    4,
                                            speed:      500,
                                            easing:     "linear",
                                            circular:   true,
                                            mouseWheel: true});
});
