maaddiissoonn

Status: Loading Swag... 100% Complete.
Joined: June 26, 2012
Last Seen: 1 week
user id: 312257
Location: swag central
Gender: F
$(document).ready(function() { //setTimeout(function(){ // Hide the address bar! // window.scrollTo(0, 1); //}, 0); // if the user is using an iphone or ipod, show link to mobile site at top of page //if(((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) && document.URL.substring(0,8) != 'http://m') { // $(".side_nav").prepend(''); //} // alert people about the new stuff //$("#side_nav").prepend(''); // delete a user comment (xhr) $("button.delete_user_comment_btn").live("click", function(e) { e.preventDefault(); var user_comment_id = this.id.split("_")[1]; $.ajax({ type:"POST", url:"/api.php", data: {a:"delete_user_comment", user_comment_id:user_comment_id}, success: function(html) { //$("#user_comment_status").html(html); $("#comment_"+user_comment_id).fadeTo('slow', 0, function() { $("#comment_"+user_comment_id).slideUp('slow', function() { $("#comment_"+user_comment_id).remove(); }); }); }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // add a user comment (xhr) $(".add_user_comment_btn").click(function(e) { e.preventDefault(); var user_comment_meat = $("#user_comment_meat").val(); var recipient_user_id = $("#recipient_user_id").val(); $.ajax({ type:"POST", url:"/api.php", data: {a:"add_user_comment", recipient_user_id:recipient_user_id, user_comment_meat:user_comment_meat}, success: function(html) { // check for flooding message / error if (html.length > 200) { // insert the comment into the DOM // clear the comment form // $("#comments").prepend(html); $(html).hide().prependTo("#comments").fadeIn("slow"); $("#user_comment_meat").val(''); } else { // display error $(html).hide().prependTo("#comments").fadeIn("slow"); } }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // toggle the quote comment reply form $(".reply_quote_comment_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; $("#replybox_" + parent_id).toggle(); }); // toggle the user comment reply form $(".reply_user_comment_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; $("#replybox_" + parent_id).toggle(); }); // add a quote comment REPLY (xhr) $(".add_quote_comment_reply_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; var quote_id = this.id.split("_")[2]; var quote_comment_reply_meat = $("#quotecommentreplymeat_" + parent_id).val(); var page = parseInt($("#comments_page").val(), 10); var page_size = page * 10; $.ajax({ type:"POST", url:"/api.php", data: {a:"add_quote_comment", quote_comment_meat:quote_comment_reply_meat, parent_id:parent_id, quote_id:quote_id}, success: function(html) { if (html.length > 200) { $.ajax({ type:"GET", url:"/api.php", data: {a:"get_quote_comments", quote_id:quote_id, page:1, page_size:page_size}, success: function(html) { $("#comments").html(html); }, error: function(html) { alert('hmm, please try again.'); } }); } else { $("#replybox_" + parent_id).prepend(html); } } }); }); // add a user comment REPLY (xhr) $(".add_user_comment_reply_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; var recipient_user_id = this.id.split("_")[2]; var user_comment_reply_meat = $("#usercommentreplymeat_" + parent_id).val(); var page = parseInt($("#comments_page").val(), 10); var page_size = page * 10; $.ajax({ type:"POST", url:"/api.php", data: {a:"add_user_comment", user_comment_meat:user_comment_reply_meat, parent_id:parent_id, recipient_user_id:recipient_user_id}, success: function(html) { if (html.length > 200) { $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_comments", user_id:recipient_user_id, page:1, page_size:page_size}, success: function(html) { $("#comments").html(html); }, error: function(html) { alert('hmm, please try again.'); } }); } else { $("#replybox_" + parent_id).prepend(html); } } }); }); // load more user comments $("#more_user_comments_btn").click(function(e) { e.preventDefault(); var user_id = $("#comments_user_id").val(); var page = parseInt($("#comments_page").val(), 10); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_comments", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // delete a quote comment (xhr) $("button.delete_quote_comment_btn").live("click", function(e) { e.preventDefault(); var quote_comment_id = this.id.split("_")[1]; $.ajax({ type:"POST", url:"/api.php", data: {a:"delete_quote_comment", quote_comment_id:quote_comment_id}, success: function(html) { $("#comment_"+quote_comment_id).fadeTo('slow', 0, function() { $("#comment_"+quote_comment_id).slideUp('slow', function() { $("#comment_"+quote_comment_id).remove(); }); }); }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // add a quote comment (xhr) $(".add_quote_comment_btn").click(function(e) { e.preventDefault(); var quote_comment_meat = $("#quote_comment_meat").val(); var quote_id = $("#quote_id").val(); var parent_id = 0; if (this.id.split("_") > 1) { parent_id = this.id.split("_")[1]; } $.ajax({ type:"POST", url:"/api.php", data: {a:"add_quote_comment", quote_id:quote_id, quote_comment_meat:quote_comment_meat, parent_id:parent_id}, success: function(html) { // check for flooding message / error if (html.length > 200) { // insert the comment into the DOM // clear the comment form // $("#comments").prepend(html); $(html).hide().prependTo("#comments").fadeIn("slow"); $("#quote_comment_meat").val(''); } else { // display error $(html).hide().prependTo("#comments").fadeIn("slow"); } }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // load more quote comments $("#more_quote_comments_btn").click(function(e) { e.preventDefault(); var quote_id = $("#comments_quote_id").val(); var page = parseInt($("#comments_page").val(), 10); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_quote_comments", quote_id:quote_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // load more comments on quotes by a user $("#more_user_quote_comments_btn").click(function(e) { e.preventDefault(); var page = parseInt($("#comments_page").val(), 10); var user_id = $("#comments_user_id").val(); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_quote_comments", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // make sure all the divs used in quotes are not fixed position $(".grid_11 div").each(function (i) { if (this.style.position == "fixed") { this.style.position = "inherit"; } }); // load more user comments by a user $("#more_user_comments_by_user_btn").click(function(e) { e.preventDefault(); var page = parseInt($("#comments_page").val(), 10); var user_id = $("#comments_by_user_id").val(); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_comments_by_user", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // load more quote comments by a user $("#more_quote_comments_by_user_btn").click(function(e) { e.preventDefault(); var page = parseInt($("#comments_page").val(), 10); var user_id = $("#quote_comments_by_user_id").val(); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_quote_comments_by_user", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // save feedback $("#send_feedback_btn").click(function(e) { e.preventDefault(); var feedback_meat = $("#feedback_meat").val(); var site_version = $("#site_version").val(); $.ajax({ type:"POST", url:"/api.php", data: {a:"send_feedback", feedback_meat:feedback_meat, site_version:site_version}, success: function(html) { $("#feedbackform").html(html); }, error: function (html) { alert('Uhoh, please try again.'); } }); }); // send invitation $("#send_invitation_btn").click(function(e) { e.preventDefault(); var email = $("#invitation_email").val(); $.ajax({ type:"POST", url:"/api.php", data: {a:"send_invitation", email:email}, success: function(html) { $("#invitation_email").val(''); $("#invitation_response").html(html); }, error: function (html) { alert('Uhoh, please try again.'); } }); }); // show the sign in form in mobile $("a.feedbacklink").live("click", function() { $("#feedbackform").show(); $("#feedback_meat").focus(); }); // show the feedback form in mobile $("a.signinlink").live("click", function() { $("#signinform").show(); $("#login_form_username").focus(); }); // follow a user when link is clicked $("span.followlink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'start_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to follow this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try following that person again.'); } }); }); // unfollow a user when link is clicked $("span.unfollowlink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'stop_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop following that person again.'); } }); }); // ignore a user $("span.ignorelink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'start_ignoring'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to ignore this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try ignoring that person again.'); } }); }); // unignore a user $("span.stopignorelink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'stop_ignoring'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to stop ignoring this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop ignoring that person again.'); } }); });});$(document).ready(function(){ // insert an alert int othe top of the meat col //$(".meatcol").prepend('

Detox Weekend: This weekend, all quotes will temporarily have their formatting removed. Why do this? Some Witty members thought it would be fun to have the top quotes be based on the content of the quote, not the formatting. If you submit a quote with formatting during Detox Weekend, the quote will appear without formatting until Monday. Have fun!

'); $("#account_settings_link").click(function(event) { $("#categories_links").hide(); offset = $(this).position(); $("#account_settings_links").css("top",(offset.top+45)+"px").css("left",offset.left+"px").toggle(); event.preventDefault(); }); // pop up a chat window $("#chatcat_link").click( function(e) { e.preventDefault(); window.open ("/chatcat", "chatcat","status=0,toolbar=0,location=0,menubar=0,resizable=1,scrollbars=0,height=500,width=809"); }); $(".favheart").click(function(){ var quote_id = $(this).attr('id').split("_"); quote_id = quote_id[quote_id.length - 1]; if ($(this).hasClass("favheartOff")) { favs.addToFavs(quote_id); } if ($(this).hasClass("favheartOn")) { favs.removeFromFavs(quote_id); } }); // prevent accidental quote deletions $(".delete-a-quote").live("click", function() { $("#deletequoteform-"+this.id.split("-")[1]).show(); }); $(".delete-a-quote-cancel").live("click", function() { $("#deletequoteform-"+this.id.split("-")[1]).hide(); }); // prevent accidental quote deletions $(".undelete-a-quote").live("click", function() { $("#undeletequoteform-"+this.id.split("-")[1]).show(); }); $(".undelete-a-quote-cancel").live("click", function() { $("#undeletequoteform-"+this.id.split("-")[1]).hide(); }); // exclude a quote from the feeds $(".exclude_quote_btn").live("click", function() { var quote_id = this.id.split("-")[1]; $.ajax({ type:"POST", url: '/api.php', data: 'a=exclude_quote"e_id=' + quote_id, success: function(msg) { alert(msg); }, error: function(msg) { alert('error ' + msg); } }); }); // unexclude a quote from the feeds $(".unexclude_quote_btn").live("click", function() { var quote_id = this.id.split("-")[1]; $.ajax({ type:"POST", url: '/api.php', data: 'a=unexclude_quote"e_id=' + quote_id, success: function(msg) { alert(msg); }, error: function(msg) { alert('error ' + msg); } }); }); // report quote $(".report_quote_btn").live("click", function() { $("#report_quote_section_" + this.id.split("_")[1]).toggle(); var quote_id = this.id.split("_")[1]; $("#report_quote_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_quote_form', quote_id:quote_id}); }); $(".report_quote_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var quote_id = this.id.split("_")[1]; var flag = $("input:radio[name=flagquote_" + quote_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_quote"e_id=' + quote_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_quote_section_' + quote_id).html('

Thank you for bringing this quote to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_quote_section_' + quote_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this quote.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that quote again.'); } }); }); // report / flag a quote as being NOT A QUOTE $(".not_a_quote_btn").live("click", function() { $("#not_a_quote_section_" + this.id.split("_")[1]).toggle(); var quote_id = this.id.split("_")[1]; $("#not_a_quote_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_not_a_quote_form', quote_id:quote_id}); }); $(".not_a_quote_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var quote_id = this.id.split("_")[1]; $.ajax({ type: "POST", url: '/api.php', data: 'a=report_not_a_quote"e_id=' + quote_id, success: function(msg) { if (msg == 'ok') { $('#not_a_quote_section_' + quote_id).html('

Thank you for bringing this quote to our attention. You are helping to make Witty a better place.

'); } else { alert('Please sign in to report this quote.'); } }, error: function() { alert('uh oh, there was an error reporting the quote. please try again.'); } }); }); // close the report not a quote form $(".not_a_quote_cancel_btn").live("click", function() { $("#not_a_quote_section_"+this.id.split("_")[1]).hide(); }); // report user $(".report_user_btn").live("click", function() { $("#report_user_section_" + this.id.split("_")[1]).toggle(); var user_id = this.id.split("_")[1]; $("#report_user_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_user_form', user_id:user_id}); }); $("button.report_user_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var user_id = this.id.split("_")[1]; var flag = $("input:radio[name=flaguser_" + user_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_user&user_id=' + user_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_user_section_' + user_id).html('

Thank you for bringing this user to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_user_section_' + user_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this user.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that user again.'); } }); }); // report user comment $(".report_user_comment_btn").live("click", function() { $("#report_user_comment_section_" + this.id.split("_")[1]).toggle(); var user_comment_id = this.id.split("_")[1]; $("#report_user_comment_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_user_comment_form', user_comment_id:user_comment_id}); }); $("button.report_user_comment_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var user_comment_id = this.id.split("_")[1]; var flag = $("input:radio[name=flagusercomment_" + user_comment_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_user_comment&user_comment_id=' + user_comment_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_user_comment_section_' + user_comment_id).html('

Thank you for bringing this comment to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_user_comment_section_' + user_comment_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this comment.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that comment again.'); } }); }); // report quote comment $(".report_quote_comment_btn").live("click", function() { $("#report_quote_comment_section_" + this.id.split("_")[1]).toggle(); var quote_comment_id = this.id.split("_")[1]; $("#report_quote_comment_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_quote_comment_form', quote_comment_id:quote_comment_id}); }); $("button.report_quote_comment_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var quote_comment_id = this.id.split("_")[1]; var flag = $("input:radio[name=flagquotecomment_" + quote_comment_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_quote_comment"e_comment_id=' + quote_comment_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_quote_comment_section_' + quote_comment_id).html('

Thank you for bringing this comment to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_quote_comment_section_' + quote_comment_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this comment.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that comment again.'); } }); }); // toggle quote source $("a.get_quote_code").live("click", function(e) { e.preventDefault(); $("#code_" + this.id.split("_")[1]).toggle(); var quote_id = this.id.split("_")[1]; $("#code_" + this.id.split("_")[1]).load('/api.php', {a:'get_quote_code', quote_id:quote_id}); });}); var favs = { addToFavs : function ( quote_id ) { var url = '/api.php'; var action = 'add_quote_to_faves'; var params = 'a=' + action + '"e_id=' + quote_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { $('#fav_btn_' + quote_id).addClass('favheartOn'); $('#fav_btn_' + quote_id).removeClass('favheartOff'); $('#fav_btn_' + quote_id).attr({alt:'Unfave', title:'Unfave'}); var new_score = parseInt($('#score_' + quote_id).html(),10) + 1; var new_label = 'Unfave'; $('#score_' + quote_id).text(new_score); $('#scorelabel_' + quote_id).text(new_label); } else { alert('Please sign in to add this quote to your faves'); } }, error: function() { alert('uh oh, something went wrong. Please try adding that quote to your favorites again.'); } }); }, removeFromFavs : function ( quote_id ) { var url = '/api.php'; var action = 'remove_quote_from_faves'; var params = 'a=' + action + '"e_id=' + quote_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { $('#fav_btn_' + quote_id).addClass('favheartOff'); $('#fav_btn_' + quote_id).removeClass('favheartOn'); $('#fav_btn_' + quote_id).attr({alt:'Add to Faves', title:'Add to Faves'}); var new_score = parseInt($('#score_' + quote_id).html(),10) - 1; var new_label = 'Add to Faves'; $('#score_' + quote_id).text(new_score); $('#scorelabel_' + quote_id).text(new_label); } else { alert('uh oh'); } }, error: function() { alert('uh oh, something went wrong. Please try removing that quote from your favorites again.'); } }); } }; var quote = { reportQuote : function ( quote_id ) { var url = '/ajax/quote.php'; var action = 'report'; var params = 'action=' + action + '"e_id=' + quote_id; $.ajax({ type: "GET", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('Thank you for telling us that this quote doesn\'t follow the rules.'); } else { alert('Please sign in to report this quote'); } }, error: function() { alert('uh oh. something went wrong. Please try reporting that quote again.'); } }); } }; // prevent accidental deletion var follow = { startfollowing : function ( user_id ) { var url = '/api.php'; var action = 'start_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to follow this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try following that person again.'); } }); }, stopfollowing : function ( user_id ) { var url = '/api.php'; var action = 'stop_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop following that person again.'); } }); } }; var block = { startblocking : function ( user_id ) { var url = '/api.php'; var action = 'start_blocking'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('Ok. This person\'s comments will no longer show on your profile and your quotes.'); } else { alert('Please sign in to block this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try blocking that person again.'); } }); }, stopblocking : function ( user_id ) { var url = '/api.php'; var action = 'stop_blocking'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok. This person\'s comments will now show on your profile and your quotes.'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop blocking that person again.'); } }); } }; var votes = { // // vote up a quote // voteUp : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'voteup'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(parseInt(data,10) + 1); }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); alert('Uh oh, something went wrong. Please try voting up this quote again.'); } }); }, // // vote down a quote // voteDown : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'votedown'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(parseInt(data,10) - 1); }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); //$("#score_" + quote_id).html("?"); alert('Uh oh, something went wrong. Please try voting down this quote again.'); } }); }, // // vote up a quote RANDOM // voteUpRandom : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'voteup'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(data); window.location = '/random-quote'; }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); alert('Uh oh, something went wrong. Please try voting up this quote again.'); } }); }, // // vote down a quote RANDOM // voteDownRandom : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'votedown'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(data); window.location = '/random-quote'; }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); //$("#score_" + quote_id).html("?"); alert('Uh oh, something went wrong. Please try voting down this quote again.'); } }); } }; var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-427894-3']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
Witty Profiles
skinscent
Status:
Joined: June 26, 2012
Last Seen: 4 days ago
Gender: F

deuces
Quotes by skinscent
I made some layouts
Just incase anyone wanted some layouts that were "decent" looking, I guess, I don't know. Anyway, the account is SkinscentLayouts, and the layout is there.
 
 
 
6060944 added by skinscent to advice quotes on 24 Jul 2012 at 3:08pm
 
 
Hey moon, please forget to fall down.
Hey moon, don't you go down.
 
 
 
6056567 added by skinscent to lyrics quotes on 23 Jul 2012 at 6:27pm
 
I feel like I haven't been on in forever hey whats up
 
 
 
6050435 added by skinscent to vent quotes on 22 Jul 2012 at 2:28pm
 
I'm trying to think of good usernames that include my name and so far I've thought of:

- Eireann (Gaelic for 'Erin')
- Erindavv (Combination of my first and last name.)

And I need help so tell me if those sound good/bad or if you have better ideas okay
 
 
 
6024244 added by skinscent to advice quotes on 17 Jul 2012 at 12:24am
 
My
body
is
a
dead
language
and
you
pronounce
each
word
perfectly.
 
 
 
6021241 added by skinscent to love quotes on 16 Jul 2012 at 3:24pm
 
I want to put my fingers on your palms and give you my words, and you could fix them; say them back to me as I meant them with your lips on mine, lending them a rhythm that I could never find.
 
 
 
6018866 added by skinscent to love quotes on 15 Jul 2012 at 11:58pm
 
The smell of her hair, the
taste of her mouth
, the feeling of her skin seemed to have got inside him, or into the air all around him. She had become a
physical necessity.
— 1984, George Orwell
 
 
 
6010348 added by skinscent to love quotes on 14 Jul 2012 at 4:30am
 
Super rich kids with nothing but loose ends,
Super rich kids with nothing but fake friends.
 
 
 
6010147 added by skinscent to lyrics quotes on 14 Jul 2012 at 2:02am
 
Hello Darling.
Sorry about that. Sorry about the bony elbows, sorry we lived here, sorry about the scene at the bottom of the stairwell and how I ruined everything by saying it out loud. Especially that, but I should have known. You see, I take the parts that I remember and stitch them back together to make a creature that will do what I say or love me back.
— Richard Siken, from "Litany in Which Certain Things are Crossed Out"
 
 
 
6010062 added by skinscent to love quotes on 14 Jul 2012 at 1:30am
 
I am
afraid
of getting older … I am afraid of getting married. Spare me from cooking three meals a day — spare me from the relentless cage of routine and rote. I want to be free…. I want, I want to think, to be omniscient…. I think I would like to call myself ‘The girl who wanted to be God.’
— Sylvia Plath, written in 1949 at age 17
 
 
 
5985444 added by skinscent to inspirational quotes on 09 Jul 2012 at 1:32pm
 
var sc_project=1156915;var sc_invisible=1;var sc_security="e53b642e";

Comments Made on maaddiissoonn's Quotes

MarcuzIssexy 1 decade ago on quote #6331873
show buttons

Okay, I understand where your coming from. But how exactly is what we are doing cowardly in anyway? Its not at all.
reply 0
maaddiissoonn 1 decade ago on quote #6331873
show buttons

People who commit suicide are cowards. Not you guys.
reply 0
MarcuzIssexy 1 decade ago on quote #6331873
show buttons

Oh. No they're not.
reply 0
kowhyda* 1 decade ago on quote #6331873
show buttons

I'm sorry, but I have to agree. That's why I never say anything when someone commits suicide and it goes on the news. It's not that I don't care, it's just it happens to lots of people. Sure, it's sad she died because the bullying got extreme, but this happens to MANY other people.

You shouldn't just feel sorry for the person who got some fame. It's sickening how people only care about the ones who get on TV, really.
reply 0
Born2BeWild 1 decade ago on quote #6331873
show buttons

youre twisted.
reply 0
[deleted] 1 decade ago on quote #6316722
show buttons

Obama is who id vote for. but your opinion is cool too.
reply 0
Monster_Dreams_ 1 decade ago on quote #6331873
show buttons

Are u being serious? When someone is dead it can affect anyone
That's not the way to go on about anyone when they are dead!
If it was someone you knew you'd want people to pray for them
Think of this girls family? Everyone has different reasons for suicide and they should at least et respect from everyone. Your very rude tbh, and these people aren't the cowards.
reply 0
maaddiissoonn 1 decade ago on quote #6331873
show buttons

you think i’m kidding? lol. this chick coulda been scum of the earth and you all sit here like you grew up with her, you don’t even know her. yeah it’s sad but honestly..it’s extreme. a ton of people kill themselves every day and somehow this chick made it in the news or somethin and now everyone worships her or somethin.
reply 0
Monster_Dreams_ 1 decade ago on quote #6331873
show buttons

I'm not even gona bother wit u if u cnt even have respect 4 the dead.so wot if she's scum ? How do u no? She's dead and it's a very sad thing so u shud just grow up n respect ppl nd stop actin like a spoiled 10 year old! If it was u it wud b a different story.
reply 0
maaddiissoonn 1 decade ago on quote #6331873
show buttons

0mG lrn 2 sp3lL
reply 0
Monster_Dreams_ 1 decade ago on quote #6331873
show buttons

Um I learned how to spell about 15 years ago. And calling people who killed themselves cowards is a new low, you don't know what they have been through so you can't judge. Your the coward Hun.
reply 0
maaddiissoonn 1 decade ago on quote #6331873
show buttons

Who are you to tell me what I’ve gone through ? Don’t call me hun , either .
reply 0
Monster_Dreams_ 1 decade ago on quote #6331873
show buttons

Lol then don't call people cowards. Simple as.
reply 0
maaddiissoonn 1 decade ago on quote #6331873
show buttons

Simple as. WUT.
reply 0
toolegittoquit 1 decade ago on quote #6316722
show buttons

Lol all the hate. I could care less what you think or what anyone else thinks. People need to stop arguing with people about things that aren't going to change. Props for having the guts to post your opinion.
reply 0
maaddiissoonn 1 decade ago on quote #6316722
show buttons

thank you :)
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

darling dont you understand? he can stop that. most definitely can. but then dont you think he would be controlling our lives? thats part of being human. to not be controlled. To be honest i cant fully explain it. I go to a Catholic school (cuz i know you care xD) anyways i'll ask my theology teacher. I remember learning it last year...and i know the basics but i want to know all of it. That question...of why there's evil in the world...bothers me too. I'll check it out tomoro. I couldnt fit anymore comments on that one quote sooo yea.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

If it bothers you then that's when you should start questioning your beliefs. One thing doesn't add up. Then another. Then another. Then another, Then you're atheist. And one of my friends stopped being my friend when I told her I was atheist because she has a giant self-absorbed pole up her like most Jesus freaks. I get to crush her beliefs in Global history when we debate though so it's okay.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

no. its completely natural to question yourself about beliefs. Its part of being human. You're right, sometimes it doesnt all make sense. But then you find answers. and faith. and it all makes sense. i wouldnt expect you to understand though. You're one of those people who has to rely on facts...you have no trust or faith.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

I do have trust. But it has to be earned. Religion has done nothing to earn it. They all think they're right. They aren't. And when it doesn't make sense you stop believing it. Faith is believing something without evidence so no. I don't do that. I need to have a reason.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

religion did have your trust at one point didnt it? I dont understand what went wrong for you to lose it....what doesnt make sense about it exactly?
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

I didn't see any evidence of God. It's sorta like when you grow up believing in Santa. It ends up seeming impossible. I would pray and nothing would happen. Nothing changed. Eventually I realized that praying didn't work. This all good God says that homosexuals are wrong. This God thinks people deserved to be tortured eternally if they do something wrong. The bible says it's okay to stone your child to death if it disrespects you. Those aren't very moral are they? Depending on who you ask Jesus and God are the same person. Jesus didn't make a sacrifice. Becoming God isn't a punishment. Everything just started adding up and I said forget it.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

you would pray? well im not going to ask you what you prayed for, but every prayer has a different answer. maybe it wasnt meant to be. He had something better in mind. Maybe He wanted to test your patience. Test your faith. Maybe you gave up too soon. He doesn't come out and say homosexuals are wrong. His intentions were for men to be with female. He still loves them all as equally as He loves us. I look at it like they're sinning. I sin all the time. yet He still loves me. why should He love them any less? He doesnt. can you give me the book and verse for that please? Jesus didnt make a sacrafice? ya because letting yourself die for other people who are all sinners isnt a sacrafice. you quit too soon darling. i bet you didnt even try. just wanted an answer to all your problems and blames God~
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

I would. Nothing ever changed. You basically make your argument invalid by saying it's God's will or his divine plan. If he knew what was right in the first place why do people pray? He already has a plan. And two places in Leviticus 18:22 Do not lie with a man as one lies with a woman; that is detestable. 20:13 If a man lies with a man as one lies with a woman, both of them have done what is detestable. They must be put to death; their blood will be on their own heads. He didn't die. He was going to come back. He became God. That isn't a sacrifice. If he died PERMANENTLY that would be a sacrifice. And I tried. I tried for years. Two years ago I decided Religion was fake. They weren't even my problems. I prayed for multiple different things. Things that didn't effect free will. Nothing changed. And I can't blame something that doesn't exist. If he was real then the world wouldn't be so messed up. If you believe in Heaven your life on Earth is meaningless.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

People pray for many different reasons. for comfort. to advice. for hope. Please read that whole chapter. throughout, they're saying 'eating rabbits is detestable' and a whole bunch of silly stuff is 'detestable'. Back then, detestable was referred to as something that went against tradition. Yes He did die. and then He rose into heaven. He did die, though. Sometimes problems so big arent meant to be changed. Need a long time. Oh ok, my life is meaningless according to you. i dont mind.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

Your life would be meaningless to yourself if you get to live forever in heaven. He died for 3 days -.- Non-existent for three days and then POOF he's God. Not a problem. Yes but it says that. If you don't take all of the bible then you take none of it. There is no cherry picking beliefs in a book that's supposed to be correct. I always have hope. If people need an imaginary friend for hope they should just have Hobbs instead.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

Honey im done arguing with you. its completely hopeless and pointless to think this convo is going anywhere. I wish i could've gotten you to see differently but you're refusing. You take things to a different level and see them as you're not supposed to. This convo could really go on forever, but im stopping it now. Nice debating with you. God bless~
reply 0
KatieGurrrl16 1 decade ago on quote #6316722
show buttons

lol I love this!! Romney ftw!
reply 0
glassygirl189 1 decade ago on quote #6316722
show buttons

Romney 2012!
reply 0
PurpleGlasses_ 1 decade ago on quote #6316722
show buttons

Mitt Romney 2012!
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

Romney would make my future life horrible. So no. The only reason to vote for Romney is if you're a discriminatory christian or if you have money. I don't even own my house. If Romney wins I'm leaving america.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

a discriminatory Christian? yes because being prolife makes me discriminatory. being pro gun makes me discriminatory. I vote for romney because i support his beliefs, and Obama is making MY future horrible.
reply 0
toolegittoquit 1 decade ago on quote #6316722
show buttons

By freaking out over it you're pretty much proving her point about Christians. Instead of freaking out trying to defend yourself or prove her wrong, how about you just chill out and worry about you? I'm atheist but I'm not going to try to tell you what you can and can't think. And she never said YOU were discriminatory. She said some Christians are. If you do not feel that you are, then it wasn't directed toward you. Have a nice day.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

Not supporting gay marriage is discrimination. You and your silly little christian retards can get over the fact that people are homosexual. There is no reason whatsoever to vote for Romney. You dumbasses that have more money need to get the over it. I'm sick of being poor. So go yourself. Christians are dumbasses. Every political member is a . If you like either of them you're completely retarded.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

wowowowowowww. nice use of language. its why people like you get no respect when it comes to politics. Ok Romney doesnt support gay marriage. thats correct. Hes not going to make laws for or against it. betchya didnt know that, huh? he's leaving it up to the states because he believes in less government interaction. Unlike Obama who wants to control every source i can use. sick of being poor? go work. thats what my dad did. thats what romney did. started from scratch and still became successful. And there are more ways for you to get money other than taking from the rich, and thats what Romney intends to do. Obama would honestly be offended to have a supporter like you~
reply 0
toolegittoquit 1 decade ago on quote #6316722
show buttons

And BTW, "Sick of being poor? Go work." That is one of the most ignorant things I have heard in my life. Do you even KNOW the unemployment rate. Ah, to be rich.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

Hey guess what princess I'm 14. I can't fuucking work. I work as much as I can. I can barely afford what I want to have. Telling someone who's poor to go work is like telling a cutter to stop. I work every single time I can. With the way America is trying to work your way to success is almost impossible. Romney isn't a role model and he wouldn't be a good president. You will end up as nothing if Romney is president. Unless you're some rich spoiled b*tch which you probably are. You rich me off because you think of everyone that doesn't have as much money as you as less. You are absolutely nothing.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

i dont think working has anything to do with you being poor. youre parents work then. Romney inherited millions from his father. ya know what he did with it all? donated it. all of it. started from scratch. and still became the f//king successful man he is today. if that isnt something i dont know what is. If thats not someone you would look up to: a hard working, caring, successful person, then im honestly worried about you. wow way to judge me on being a rich spoiled b//ch. so nice of you. cuz i totally told you about my whole life and my family's income. well done. My best friend since birth was forced to leave her house. i love her to death. i think of her as higher than me. I am absolutely nothing? ok make sure to remind me when i start working as a pediatric oncologist. when i graduate from high school with a 4.0. when im somewhere far in life while you're sitting doing nothing, not working and complaining with absolute bs like you are now.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

I could be finished with High School by now. I get the highest grades anyone in my grade has. I'm in every honor class. I do everything faster and better than almost everyone. My mom works. My dad is too self-righteous to get off his and be productive. You are a spoiled . I can tell. I don't care about you friend. She wasn't a part of this conversation. You are absolutely nothing. You'll be helping children? Cool. I'll be making EVERYONE'S lives better with science and mathematics. I plan on majoring in Physics. I will help the world. And the future.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

good for you. and i honestly mean it. But i dont understand how a hard worker like you.....are the way you are. too self rightous? so he's lazy? You said i think that everyone who is poor is below me. so i brought up my friend to prove you wrong. and i'll bring up the tons of people im related to and live by. I'll be helping children with CANCER. you little b/tch. I'll be making tons of lives better; finding cures. saving people. That will CHANGE the world. and the future. Cancer includes science sweetheart. dont you dare tell me i am nothing. i havent done sh/t to you. you dont know anything about me. im not a spoiled b/tch. k? k. i noticed you didnt reply about my comment on Romney's generousness. way to go champ. Thats what i hate. you guys can never admit to anything.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

You're all mighty God should be able to stop the cancer. He can't so he isn't all powerful or he won't because he isn't all good. You are a spoiled . And I'm the way I am because people are dumbasses and don't know anything. Without physics you wouldn't have the internet. By the time I finish college I'll be able to revolutionize the world. And Romney thinks he gets to play God and rule a planet when he dies. Obviously he'll try to be "nice" and "generous"
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

hahahahahah thats not how it works hun. I'd go into details, but for three reasons i will not. 1. its too much writing 2. you wouldnt listen anyways 3. you're far to gone for me to waste my time on you. wow so im assuming you were raised Catholic. how proud must your parents be of you. Ok good luck with revolutionizing the world on your own. hahahaaa. K he donated all that money and did all his good deeds YEARS before ever even deciding to become president. Why cant you just admit to that? Alright, i'm done here. mostly because talking to you is pointless. Anyways, good luck. hope life leads you where you want it to. God bless~
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

Your* Dammit.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

please look at my new comment. i cant fit much on this convo anymore. and you have blocked me. soo yea. ^^^
reply 0
maaddiissoonn 1 decade ago on quote #6316722
show buttons

Leave now
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

Okay. I'll go to Switzerland where 80% of the people there are Atheist or Agnostic. They are smart people. Unlike you.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

I feel so bad for people like you
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

I feel bad for people like you who were indoctrinated into believing in a fairy tale.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

please tell me which part is a fairy tale? educate me on your nonsense.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

All of it. God isn't real. The bible is a whole bunch of made up stories.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

ok you're far too gone for me to help you. im so sorry.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

You really should learn that imaginary friends are a sign of schizophrenia.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

you really should learn that your comments are signs of an ignorant person. I added you to my prayer list k~
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

One hand at work is better than a thousand clasped in prayer. Praying does absolutely nothing. I found that out when I was a Christian.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

prayer does everything for me. I'm sorry you couldnt figure that out or find God when you were Catholic. I dont know your story, but im sorry about how it all turned out.
reply 0
Saphacier 1 decade ago on quote #6316722
show buttons

If God was real he was a and let my cousin die. If he was real than it would be his fault my friend has schizophrenia. If he was real then there wouldn't be suffering that isn't caused by free will. An all powerful and all good God would be able to stop that.
reply 0
maaddiissoonn 1 decade ago on quote #6316722
show buttons

HA. Please, I’ll help you pack your bags.
reply 0
ICONiac 1 decade ago on quote #6316722
show buttons

Did you do this just for hate? x)
reply 0
wittyquotesgurl 1 decade ago on quote #6316722
show buttons

Am I the only one who doesn't care about politics and ? I honestly don't care who will win the election.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

you should care about how our country is run. It's connected to everything.
reply 0
wittyquotesgurl 1 decade ago on quote #6316722
show buttons

eh.
reply 0
DramaForLife 1 decade ago on quote #6316722
show buttons

Ew, smells like republicans.
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

If anything i smell are those democratic donkies.
reply 0
sayheyilyx 1 decade ago on quote #6316722
show buttons

Oh my god I love you
reply 0
littleleftofthemiddle 1 decade ago on quote #6316722
show buttons

:* thanks doll love youu tooooooo c:
reply 0
*한숨** 1 decade ago on quote #6316722
show buttons

Not that I know much on the subject... But Mitt Romney does seem a bit controlled by other people. Besides, Obamas cool. He's the only country leader that can get away with bursting out in song in the middle of a speech. If David Cameron did that... All we'd do is make fun of him
reply 0
maaddiissoonn 1 decade ago on quote #6316722
show buttons

Would you honestly rather a “cool” president? It’ll be real cool when we have zero rights, and we are stripped from every great thing we have now. Obama has been made fun of. PLEASE educate yourself.
reply 0
*한숨** 1 decade ago on quote #6316722
show buttons

It doesnt matter who's the president of the USA, they can't stop a war. The only thing they can do is withdraw troops. Considering most politicians never stick to what they promise, I think it's better to have fun, than absolutely nothing at all.
reply 0
glassygirl189 1 decade ago on quote #6316722
show buttons

The president does more than just deal with the military... And if America just 'had fun' we would be in some deep crap.
reply 0
*한숨** 1 decade ago on quote #6316722
show buttons

I know that, but she only said about military:P
reply 0
kiaranine 1 decade ago on quote #6316722
show buttons

[deleted]
maaddiissoonn 1 decade ago on quote #6316722
show buttons

Lol, Canada has no rights. Why do you think so many Canadians are coming here? The only good thing in Canada is the fact that Diesel runs cheap.
reply 0
GeorgieBooLovesYou 1 decade ago on quote #6316722
show buttons

"Canada has no rights"? Seriously? WTF. Canada has gay marriage, unlike the united states- And, there is plenty of good things about Canada, except you probably don't know very many of them.
reply 0
soulofthereaper 1 decade ago on quote #6316722
show buttons

Everyone just calm down, god, it's just her opinion, you all preach about how everyone can have one and that people need to respect your opinion but then you bash on others.
reply 0
*한숨** 1 decade ago on quote #6316722
show buttons

I think people can state their opinion on the subject, just as long as its put nicely and doesnt offend anyone
reply 0
maaddiissoonn 1 decade ago on quote #6316722
show buttons

Thank You!!
reply 0
Mtune 1 decade ago on quote #6316722
show buttons

Love, Don't you know that some people here are Obama voters? Like wtf. Just dont share negative comments like this. K? you got it?
reply 0
dragonfly26 1 decade ago on quote #6316722
show buttons

omg....I'm looking at the comments, and I scroll back up to go back, and there's an ad saying

"Romney vs Obama Vote now"

That's just freaky O_O
reply 0
grownsimba 1 decade ago on quote #6316722
show buttons

lol... how is this "inspirational"?
reply 0