$(document).ready(function(){
		$('.mainmenu li a').hover( 
        function () {
          $(this).animate({backgroundColor :'#d50046'}, {queue:false,duration:100});
        }, function () { 
          $(this).animate({backgroundColor:'#d3d3d3'}, 500, '', function(){$(this).css('background-color','transparent');});
        });
        $('.maincontent li a').hover( 
        function () {
          $(this).animate({backgroundColor :'#d50046'}, {queue:false,duration:100});
        }, function () { 
          $(this).animate({backgroundColor:'#fff'}, 500, '', function(){$(this).css('background-color','transparent');});
        });
        $('.maincontent li.partner a').hover( 
        function () {
          $(this).animate({backgroundColor :'#d50046'}, {queue:false,duration:100});
        }, function () { 
          $(this).animate({backgroundColor:'#fff'}, 500, '', function(){$(this).css('background-color','transparent');});
        });			

  $("a.popup").fancybox({
    'width' : '70%',
    'height' : '90%',
    'autoScale' : true,
    'transitionIn' : 'none',
    'transitionOut' : 'none',
    'type' : 'iframe'
  });

}); 

