$(document).ready(function(){

	$('#ourMenu ul:not(#key) li:odd').css('background','#f0f0f0');
	$('#insideMenu ul:not(#key) li:odd').css('background','#f0f0f0');
	
	$('#ourMenu ul li em:not(.gf,.h,.m,.a,.f,.v)').css('opacity','0.7');
	$('#insideMenu ul li em:not(.gf,.h,.m,.a,.f,.v)').css('opacity','0.7');
	
	$('#ourMenu ul li em:not(.gf,.h,.m,.a,.f,.v)').hover(function(){
      $(this).animate({ 
        opacity: 1
      }, 100 );
	},
	function () {
	$(this).animate({ 
        opacity: 0.7
      }, 100 );
     });
     
     $('#insideMenu ul li em:not(.gf,.h,.m,.a,.f,.v)').hover(function(){
      $(this).animate({ 
        opacity: 1
      }, 100 );
	},
	function () {
	$(this).animate({ 
        opacity: 0.7
      }, 100 );
     });
 
$('.sideFixedNav').css('display','none');
    
     
$('a[href*=#]').click(function() {
	    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
	    && location.hostname == this.hostname) {
	      var $target = $(this.hash);
	      $target = $target.length && $target
	      || $('[name=' + this.hash.slice(1) +']');
	      if ($target.length) {
	        var targetOffset = $target.offset().top;
	        $('html,body')
	        .animate({scrollTop: targetOffset}, 1000);
	        
	       return false;
	      }
	    }
	 });
	 
	$('#newsletter').colorbox({iframe:true, innerWidth:300, innerHeight:200});
      
});