// JavaScript Document
$(document).ready(function() {
		//animate the main navigation
		$( "li.levelOne > a" ).mouseover(function(){
  			$(this).parent().animate({ marginLeft: 0})
		});
		
		$( "li.levelOne > a" ).mouseout(function(){
			if($(this).parent().hasClass('selected')==false){									 
  			$(this).parent().animate({ marginLeft: -24})
			}
		});
		
		//animate the regisseure navigation
		$( "li.levelTwo > a" ).mouseover(function(){
  			$(this).parent().animate({ marginLeft: 0})
		});
		
		$( "li.levelTwo > a" ).mouseout(function(){
			if($(this).parent().hasClass('selected')==false){									 
  			$(this).parent().animate({ marginLeft: -19})
			}
		});
		
		
		
});



