$(document).ready(function() {
	$(".star_").rating({
	'required': true,
	'readOnly': true
	});
	$(".star_e").rating({
	'required': true
	});
	$(".star_ajax").rating({
	'required': true,
	callback: function(value, link){ 
					$(this.form).ajaxSubmit({         
						success: function(resp){
                    	    alert(resp);
                		}
                	});
		}
	});
	$("a[rel^='prettyPhoto']").prettyPhoto();

});
