

$(document).ready(function() {

	// ======================================
	// rating widget initiation
	$(".ratingWidget").addClass("ratingWidgetJS").removeClass("ratingWidget");
	// ======================================
	// rating widget mouseovers
	$(".ratingWidgetJS li").mouseover(function(){
		$(this).parent().addClass($(this).attr("className"));
	}).mouseout(function(){
		$(this).parent().removeClass("r1 r2 r3 r4 r5");
	});
	
	
});


var ajaxPath = "/ajax/getLibraryAsset/";

function viewLargerImage(assetPath){
	
	var pledgeDetailsPath = ajaxPath + "libraryAsset.cfm";
	
	$.get(pledgeDetailsPath, {assetPath:assetPath}, function(data){
		
		if(data.length){
			$.modal(data,{position: ["5%","25%"]});
		}else{
			alert("Larger image is not available at the moment");
		}
	});
}