/**
 * Unfinished Man
 * custom.js
 *
 * 1Serpent
 * Design, Development and Managed Hosting
 * http://1serpent.com/
 *
 * Last Updated: 2010-04-30 18:53:13 +0200 (Fri, 30 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");

	});

	// Tabbed widget
	jQuery(document).ready(function() {
		jQuery('.sp_tabs_container > ul').tabs({ fx: { height: 'toggle' } });
	});

});
