/**
 * Primary navigation rollovers
 *
 * Copyright 1999-2007 iMarc LLC
 *
 * @version 0.1.0
 *
 * @author  Craig Ruksznis [cr] <craigruk@imarc.net>
 *
 * @changes 0.1.0  Initial build [cr, 2007-12-20]
 *
 *----------------------------------------------------------------------------*/

/**
 * Functions to be loaded when the DOM is created
 */
$(function() {
	$('#primary_nav a').hover(
		function(){
	      $(this).animate({'background-position-y': '-6px'}, 150);
	    },
		function(){
	 	  $(this).animate({'background-position-y': '0px'}, 500)
	    }
	);
});

