$(document).ready(function(){
	$('#buttons div').hover(
    function () {
		$('h3',this).css('color', 'black');
	}, 
	function () {
		$('h3',this).css('color', '#767774');
    });
    
    $('#links a:odd').css('background-color', '#7c8792');
	
	$('#links a:odd').hover(function () {
		$(this).css('background-color', '#b0b7bd');
	}, 
	function () {
		$(this).css('background-color', '#7c8792');
    });
    
    $('#navigation a:odd').css('background-color', '#7c8792');
	
	$('#navigation a:odd').hover(function () {
		$(this).css('background-color', '#b0b7bd');
	}, 
	function () {
		$(this).css('background-color', '#7c8792');
    });
    
    $('tr:even').css('background-color', '#e0e1db');
    $('td:even').css('width', '180px');
    
    //INPUT FIELDS
	$('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);
		}
	});
	
	//SHOW DESCRIPTION
	$('.showDescription').toggle(function(){
		$(this).next().show(1000);
		$(this).css('font-weight', 'bold');
	},function(){
		$(this).next().hide('slow');
		$(this).css('font-weight', 'normal');
	});	
});
