$(document).ready(function(){
						   
					$cc = 0; 
					$rr = 0;
					$('body').colorBlend('background-color', '#348234, #1f6d1f, #386b38, #171270, #1f217c, #27541a', 300000);  
					
					$('#comingsoon').watch('left', function(){
															
															
															$myL = $(this).position().left;
															
															$relL = $myL / 40.0;
															
															$('#ees').css('left', $relL + 100) ;
																
																
															$rr = (Math.floor(Math.random()*100));
																
																if($rr==0){
																	$('#ees').css('background', 'url(images/0ees.png)');
																}
																
																if($rr==1){
																	$('#ees').css('background', 'url(images/1ees.png)');
																}
																   
															
															}, 1000);
																
					
					
					
					
					

					$('#comingsoon').animate({
							left: $(window).width()
						  }, 9999999, function() {
							// Animation complete.
					});
					
					
					$('#tweets span').click(function 
											getAttr(){
												$('.tweetClicker').css('font-weight', '200');
												$(this).css('font-weight', '800');
												var tweeter = $(this).attr('id');
												var mystring = 'http://twitter.com/statuses/user_timeline/' + tweeter + '.json?callback=?'
													$.getJSON(mystring, function(data) {
																		   $("#tweetHolder").html('<span class="smb">tweeted: </span><br/>' + data[0].text);
													});
												}
											
											);
					
					$.getJSON('http://twitter.com/statuses/user_timeline/gabiReith.json?callback=?', function(data) {
																		   $("#tweetHolder").html('<span class="smb">tweeted: </span><br/>' + data[0].text);
																		   $('#gabiReith').css('font-weight', '800');
													});
					
});




																
																
																
																
																
