﻿jQuery(document).ready(function(){

				jQuery("#contact_slider").hover(function() {
					jQuery('#contact_bg_overlay').show("fast");
					jQuery(this).animate({left: "0px"}, "slow");
					jQuery('#contact_bg_overlay').animate({opacity: "0.30"}, "slow");
				}, function() {
					jQuery(this).animate({left: "-280px"}, "fast");
					jQuery('#contact_bg_overlay').animate({opacity: "0"}, "slow");
					jQuery('#contact_bg_overlay').hide("fast");
				});


			});
