$(document).ready(function(){
	//INPUT ELEMENTS	
	$('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);
		}
	});

	$('.button').hover(function(){
		$('.button_over', this).css('color', '#ffffff');
	},
	function(){
		$('.button_over', this).css('color', '#726807');
	});
	
	$('.showDescription').toggle(function(){
		$(this).next().show(1000);
		$(this).css('font-weight', 'bold');
	},function(){
		$(this).next().hide('slow');
		$(this).css('font-weight', 'normal');
	});

	//COLORBOX
	$("a[rel='example1']").colorbox();	
	
	$('#inner_nav a:last').css('border-bottom', 'none');
});

