		$(document).ready(function(){	
			$("#slider").easySlider({
				auto: true, 
				continuous: true,
				controlsFade: true
			});		
			
	$('.launch').bind('click', function(){ $(this).next().children('a:first').click(); return false; })
		});	
	// [[for portfolio.php only]]
   $(document).ready(function(){
       $(".pic_link_multiple a").prettyPhoto();
   });
	$(document).ready(function(){
		/* Ajax Contact Form */
		$('#myForm').ajaxForm(function(data) {
			if (data==1){
				$('#success').fadeIn("slow");
				$('#myForm').resetForm();
			}
			else if (data==2){
				$('#badserver').fadeIn("slow");
			}
			else if (data==3)
			{
				$('#bademail').fadeIn("slow");
			}
		});
	});
 	$(document).ready(function() {
 	var twitterUsername = 'nkeebaugh';
    $.ajax({
      dataType: 'jsonp',
      url: "http://twitter.com/statuses/user_timeline/" + twitterUsername + ".json?callback=twitterCallback"
    	});
  	});

  	function twitterCallback(data) {
    var found = false;
    $.each(data, function(){
      if (this["text"].indexOf('@') != 0 && !found) {
        $('#twitter_div span').text(this["text"]);
        found = true;
      }
    });
  	}