/**
 * Review.js
 *	- functions to be used with recipe reviews
 **/
 
 $(document).ready(function(){
	var link;
	$('.review-link').each(function(){
		link = $(this).attr('href');
		$(this).attr('href',link.split('&redirect')[0]);
	});
	$('.review-link').colorbox({fixedWidth:'557',fixedHeight:'544',iframe:true}); 
 });
 
  /**
  * _close(); 	closes the sendto friend popup
  **/
  function Review_close(no_wait){
	if(no_wait) $('#modalClose').click();
	else setTimeout("$('#modalClose').click();",10000);
  }