jQuery.noConflict();

// Put all your code in your document ready area

jQuery(document).ready(function($){

// Do jQuery stuff using $ this where the functions need to go   


		$(document).ready(function() {
		
			
		 // ======================= Custom Field Values =========================
			
			$("#Wedding").DefaultValue("Wedding date");
			
			$("#Name").DefaultValue("Your Name");
			
			$("#Email").DefaultValue("Email Address");

			
		// ======================= Tweets =========================
			
			$(function(){
			  $(".tweet").tweet({
				username: "Tori_at_Riot",
				avatar_size: 0,
				count: 2,
				loading_text: "loading tweets..."
			  });
			});



		});


});
