$(document).ready(function() {
	
	var TWITTER_USERNAME = 'glennnye';	
	
	$('.field input')
		.focus(function(){
			if( $(this).val() == $(this).attr('title') ) {
				$(this).val('');
			}
		}).blur(function(){
			if( $(this).val() == '' ) {
				$(this).val( $(this).attr('title') );
			}
		});
	
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		DD_belatedPNG.fix('h1#logo a,.container .img');
	};
	
	
   $(".rollover").hover(
      function(){this.src = this.src.replace("_off","_on");},
      function(){this.src = this.src.replace("_on","_off");});	
	
	
	if( $('#tweets').length > 0 ) {
		$('#tweets').tweet({
			count: 3,
			username: TWITTER_USERNAME,
			loading_text: 'Loading latest tweets... please wait'
		});
	};	
	
	
	
	
});
