$(document).ready(function(){
	$('#picture img:last').css('border', 'none');
	$('.buttons:last').css('margin-right', '0px');
	
	$('.buttons').hover(function(){
	    $('img', this).css('opacity', '.5');
	    $('div', this).css('display', 'none');
	},function(){
	    $('img', this).css('opacity', '1.0');
	    $('div', this).css('display', 'block');
	});
	
	//CONTACT FORMS
		$('input[type=hidden]').each(function(){
			$(this).css('display', 'none');
		});
			
		$(':input').focus(function(){
			if($(this).val() == $(this).attr('rel')){
				$(this).val('');
			}
		}).blur(function(){
			if($(this).val() == ''){
				var atty = $(this).attr('rel');
				$(this).val(atty);
			}
		});
	//CONTACT FORMS
	
	$('.showDescription').toggle(function(){
		$(this).next().show(1000);
		$(this).css('font-weight', 'bold');
	},function(){
		$(this).next().hide('slow');
		$(this).css('font-weight', 'normal');
	});

});

