/* 
  - Requires Jquery 1.2.1
  - Requires styles.css
*/

jQuery(document).ready(function(){
  jQuery('.recipe_list .recipe_photo .rating').hide();
  jQuery('.recipe_list .recipe_photo').mouseover(
		function(){
			jQuery(this).children('.rating').show();
		}
	);
	jQuery('.recipe_list .recipe_photo').mouseout(
		function(){
			jQuery(this).children('.rating').hide();
		}
	);
	
	var aj = new AjaxRater();
	aj.enableAjaxRating('.recipe_photo .rating a');
	var aj2 = new AjaxRater();
	aj2.enableAjaxRating('.user_controls .rating a');
});