// JavaScript Document
/* Button Fadin Hover */
jQuery.noConflict();
jQuery(function() {
				
	jQuery(document).ready(function(){
		jQuery(".clientlogin").click(function () {
			jQuery(this).children(".img").toggle();
				return false;
		});
	});

	// set opacity to full on page load
	jQuery("a span").css("opacity","1");
	// on mouse over
	jQuery("a span").hover(function () {
		// animate opacity to nill
		jQuery(this).stop().animate({
			opacity: 0
		}, "fast");
	},
	// on mouse out
	function () {
		// animate opacity to full
		jQuery(this).stop().animate({
			opacity: 1
		}, "fast");
	});
});