$(document).ready(function(){

        $('#rate_button').hide();

     
	$('#plus').click(function() {
		$(this).parent().hide();
		$("#bio_long").slideDown("slow");
	});
	$('#minus').click(function() {
		$(this).parent().slideUp("slow");
		$("#bio_short").show();	
	});

    	// rating
	$("#rating").stars({
        inputType: "select",
        captionEl: $("#stars-cap"),
        oneVoteOnly: true,
        callback: function(ui, type, value){

            modelID = $('#model_id').val();
             //alert(modelID);
            $("#stars-wrapper2").stars("select", value);
            $("#stars-wrapper2-red").html(value==ui.options.cancelValue ? "Rating removed" : "Rating saved! ("+value+")").stop().css("opacity", 1).fadeIn(30);
            setTimeout(function(){ $("#stars-wrapper2-red").fadeOut(1000) }, 2000);

            //alert(photosetID);
            // make an ajax call to rate
            $.get("/ajax/rateModel.php", {rating: value, modelID: modelID}, function(res)
            {
                //alert(res);
            });
        }
        });
})