$(document).ready(
	function() {
	// Motion Image Cycle

		// Show slides ul
			$("#motion ul#slides").show();

		// Change background image to blank slate
			$("#motion").css({"background":"url(../../images/s6dormanfresh/home/motion_js1_bg.jpg) no-repeat 9px 0"});

		// Initiate image cycle
			$('#motion ul#slides').cycle();


	
	// Top Bar current states
	
		// School list current state
			$("#top_bar li.school_list a#current").toggle(
				function () {
					$(this).parent("li.school_list").css({"background":"url(../../images/dorman_h/topBar/hover.png) repeat-x 0 0"});
	      		},
	      		function () {
	        		$(this).parent("li.school_list").css({"background":"none"});
	      		}	
	    	);
		
		// Search current state
			$("li.search a").toggle(
      			function () {
        			$(this).parent("li.search").css({"background":"url(../../images/dorman_h/topBar/hover.png) repeat-x 0 0"});
      			},
      			function () {
        			$(this).parent("li.search").css({"background":"none"});
      			}
    		);

	
	}
);


