/*!
 * SaaS II WordPress theme
 *
 * @category    SaaS_II_Theme
 * @package     js
 * @copyright   Copyright (c) 2010 Worry Free Labs, LLC. (http://worryfreelabs.com/)
 * @author      Oleksandr Bernatskyi
 * 
 * This file is part of SaaS II WordPress theme
 */

;jQuery
(
	function($)
	{
		/**
		 * Homepage
		 */
		if ($('body').is('.page-template-page-home-php'))
		{
			// Content
			$('div.proms, div.tweets').appendTo('div.header div.center');
			
			// Slider
			$('.slider > div').easySlider();
			
			// Features
			$('div.features3 li:nth-child(3n-2)').addClass('first');
		}
		
		
		/**
		 * Sidebar
		 */
		$('#searchform').parent('div').addClass('searchform');
		
		
		/**
		 * Pricing Grid
		 */
		var $grid = $('#griddler_ii');
		
		if ($grid.length)
		{
			// Sections
			var $gridSections = $grid.find('div.sections article');
			
			$gridSections
				.filter(':first')
					.addClass('first')
					.end()
				.filter(':last')
					.addClass('last')
					.end()
				.hover
				(
					function()
					{
						$gridSections.removeClass('selected');
					}
				);
			
			// Grid Height
			$grid.height($gridSections.filter(':first').outerHeight(true));
		}
	}
);
