jQuery.noConflict();

jQuery(document).ready(function($){
	$('.ads_logo').mouseover(function() {
		newUrl = this.src.replace(/grey_/, '');
		this.src = newUrl;
	});
	
	$('.ads_logo').mouseout(function() {
		this.src = $(this.parentNode).attr('rel');
	});
	
	$('#email').focus(function() {
		$(this).val('');
	});
});
