//SET NOCONFLICT TO WORK WITH OTHER LIBRARIES
jQuery.noConflict();

//CUSTOM JQUERY FUNCTIONS
jQuery(document).ready(function(){

	jQuery(document).ready(function() {
		jQuery("#contactForm").validate();
	});

	//Check if the tweet area is loaded
	if (jQuery('#tweet').length != 0){
	    jQuery('#tweet').tweet({
			username: "USERNAME",
	        //query: "USERNAME",
	        join_text: "auto",
	        avatar_size: 32,
	        count: 1,
	        auto_join_text_default: "",
	        auto_join_text_ed: "",
	        auto_join_text_ing: "",
	        auto_join_text_reply: "",
	        auto_join_text_url: "",
	        loading_text: ""
	    });
	}
	
});
