		$(document).ready(function(){
			
			$(".tweet").tweet({
				username: "pinkpaisleydsgn",
				join_text: "auto",
				avatar_size: 0,
				count: 10,
				auto_join_text_default: "I said,",
				auto_join_text_ed: "I",
				auto_join_text_ing: "I was",
				auto_join_text_reply: "I replied to",
				auto_join_text_url: "I was checking out",
				loading_text: "Loading tweets..."
			});
			
			$('div#lastfm').lastFM({
				username: 'pinkpaisley',
				apikey: '92063b0c6c0f846b45d4dd765063c475',
				number: 5,
				artSize: 'medium',
				noart: 'img/noartwork.jpg',
				onComplete: function(){
					//Done
				}
			});

			$('#contact').validate({
				submitHandler: function(form) {
					$(form).ajaxSubmit({
					url: 'scripts/process.php',
					success: function() {
					$('#contact').hide();
					$('#contact-form').append("<p class='thanks'>Thanks! Your request has been sent.</p>")
					}
					});
				}
			});   
			        
		});	
						
			if (!Modernizr.input.placeholder){
				  $('input[placeholder], textarea[placeholder]').placeholder();
			}
