jQuery(document).ready(function($){
// Check if the current URL matches the "Leave a Review" page URL
if (window.location.href.indexOf("leave-a-review") > -1) {
$('#star-1, #star-2, #star-3').on('click', function(){
// Show lightbox for low ratings
$.fancybox.open({
src : '#low-rating-form',
type : 'inline',
});
});
$('#star-4, #star-5').on('click', function(){
// Redirect to Google review page for high ratings
window.open('https://www.google.com/search?hl=en-US&gl=us&q=Patio+Showcase,+13655+Belcher+Rd,+Largo,+FL+33771&ludocid=9120669347583706128&lsig=AB86z5XrqMXH0w18ll9lA3Mb049H#lrd=0x88c2fbf21fb46bef:0x7e932072c0854410,3', '_blank');
});
}
});