/*!
 * SaaS II WordPress theme
 *
 * @category    SaaS_II_Theme
 * @package     js
 * @copyright   Copyright (c) 2010 Worry Free Labs, LLC. (http://worryfreelabs.com/)
 * @author      Oleksandr Bernatskyi
 */

;jQuery
(
	function($)
	{
		/**
		 * Homepage Slider
		 */
		$('.slider > div').easySlider();
		
		
		/**
		 * Pricing Grid
		 */
		var $gridSections = $('div.grid div.sections section');
		
		$gridSections.hover
		(
			function()
			{
				$gridSections.removeClass('on');
				$(this).addClass('on');
			}
		);
	}
);