// -------------------------------- //
// Rollover state for feature boxes //
// -------------------------------- //
// Author: rachel@dollypower.com    //
// -------------------------------- //

// Document ready
jQuery(document).ready(function() {
  
	// Find feature boxes
	jQuery('.feature-box').hover(function() {	
		jQuery(this).addClass('hover'); 	// Add "hover" class
	}, function() {
		jQuery(this).removeClass('hover'); 	// Remove "hover" class
	}); // End function

	// Find category rows
	jQuery('.row .image').hover(function() {	
		jQuery(this).addClass('hover'); 	// Add "hover" class
	}, function() {
		jQuery(this).removeClass('hover'); 	// Remove "hover" class
	}); // End function

  
}); // End script
