/**
 * Project 1
 * custom.js
 *
 * 1Serpent
 * Design, Development and Managed Hosting
 * http://1serpent.com/
 *
 * Last Updated: 2010-04-02 18:44:32 +0200 (Fri, 02 Apr 2010)
 */

jQuery(document).ready(function() {

	// Drop-down menu navigation fix
	jQuery("ul.menu > li").hover(function() {

	    jQuery(this).addClass("sp_hover");

	}, function() {

	    jQuery(this).removeClass("sp_hover");

	});

});
