$(function(){
	$('#top-navigation img')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			if($(this).attr('class')!='active'){
				$(this).stop().animate({opacity: 0}, {duration:250});
			}
		})
		.mouseout(function(){
			if($(this).attr('class')!='active'){
				$(this).stop().animate({opacity: 1}, {duration:450});
			}
		});	
	
	// Contact form fields
	
	$(".inputer").each(function(){
		if($(this).val()!=""){
			$(this).css('background-image', 'url('+ cssdir +'/images/contact-input-bg.jpg)');
		}
	})
	
	$(".inputer").bind('focus', function() {
		$(this).css('background-image', 'url('+ cssdir +'/images/contact-input-bg.jpg)');
	});
	
	$(".inputer").bind('blur', function() {
		if($(this).val()=="" || $(this).val()==/\s*/){
			$(this).css('background-image', 'url('+ cssdir +'/images/contact-' + this.id + '-bg.jpg)');
		}
	});
	
});