/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function clickStars(ctrl){
	  var goToFeedback = jQuery('#feedbackLink_'+ctrl.id.replace('ratingStars_',''))[0].href;
	  window.location = goToFeedback;
	  }
	function selectMenuCustPhoto(photoThmb){
	  	jQuery('[name='+photoThmb.name+']').css('border','');
	  	var galleryLoader = jQuery('<img id="galleryLoader" style="margin-left:-42px;margin-top:15px;position:absolute;z-index:4;" src="/img/loadMediumTransparent.gif" title="loading..." alt="loading..." />');
	  	/*jQuery('div.highslide-wrapper').append(galleryLoader);*/
	  	jQuery(photoThmb).after(galleryLoader);

  		photoThmb.style.border='1px solid #FF6633';
  		var imgSrc = photoThmb.src.replace('thumb','img');
  		var img=new Image();
	  	img.onload=function(){
	  		jQuery('img.highslide-image[title=Click to close]')[0].src = imgSrc;
	  		jQuery("#galleryLoader").remove();
	  	}
	  	img.src=imgSrc;
	}


