var mouse_is_inside = false;
$(document).ready(function()
{
	$('#blue').click(function(){
	$('#ct').show();
	});
	
    $('#ct').hover(function(){ 
        mouse_is_inside=true; 
    }, function(){ 
        mouse_is_inside=false; 
    });
    $('#blue').hover(function(){ 
        mouse_is_inside=true; 
    }, function(){ 
        mouse_is_inside=false; 
    });
    $("body").mouseup(function(){ 
        if(! mouse_is_inside){ $('#ct').hide();
			$('#footer-right').click(function(){
		        $('#ct').toggle();
		    });
				
		}
		
    });

   $('.footer-nav span').mouseover(function(){
	if(!($('a',this).hasClass('activelink'))){
        	$('a',this).show();
        }
    });
	$('.footer-nav span').mouseout(function(){
           if(!($('a',this).hasClass('activelink'))){
        $('a',this).hide();
           }
         });




$('#send').click(function(){
	var name =$('#name').val();
	var email =$('#email').val();
	var talkative =$('#talkative').val();
		var dataString = 'name='+ name + '&email=' + email + '&talkative=' + talkative;  
		//	alert(dataString);
		$.ajax({  
		  type: "POST",  
		  url: "process.php",  
		  data: dataString, 
		  dataType: 'text', 
		  success: function(msg) {
		    $('.contact-left').html("<div id='message'></div>");  
		    $('#message').html("<h2>Contact Form Submitted!</h2>")  
		    .append("<p>We will be in touch soon.</p>")  
		    .hide()  
		    .fadeIn('slow');  
		  }  
		});  
		return false;


});

});


