$(document).ready(function() {
	$("#quotes select").change(function(){
		var SelectedMood = $("select option:selected").val();
		$.post('/includes/quotes', {mood: SelectedMood}, function(mood){$("#quote_details").html(mood);});
	});
	$("#quotes form").submit(function() {
		var SelectedMood = $("select option:selected").val();
		$.post('/includes/quotes', {mood: SelectedMood}, function(mood){$("#quote_details").html(mood);});
		return false;
	});
 });
