 $(document).ready(function() {
   $('.projects li').mouseenter(function(){
   		$(this).find('div').fadeTo('fast',0.9);
   });
    $('.projects li').mouseleave(function(){
   		$(this).find('div').fadeTo('fast',0.0);
   });
	
	$('#projects_2').hide();
	$('#view_more').click(function(){
			$('#projects_2').slideDown('slow');
			$(this).fadeOut();
			return false;
	});
   /*
   $('#nav').mouseenter(function(){ 
   	//$(this).addClass('down');
	$(this).animate({"top": "0px"}, "fast");

   });
   $('#nav').mouseleave(function(){ 
   	//$(this).removeClass('down');
	$(this).animate({"top": "-35px"}, "fast");
   });*/
   $('#purpose').change(function(){
		if($(this).find('option:selected').text()=='Project Inquiry'){
			$('#rfp_fields').slideDown();
		}else{
			$('#rfp_fields').slideUp();
		}
   });
   
	$(".projects a.img").fancybox({
		'titleShow'		: false
	});
	
    var options = { 
        beforeSubmit:  function(){},  
        success:       formSuccess,
		beforeSubmit:  formValidate,
		url:           'contact.ajax.php',
		type:		   'post'
 
    }; 
 
    $('#contact_form').ajaxForm(options);

 });
 
 function formSuccess(){
	 $('#form_container').slideUp('fast',function(){$('#form_message').show(); $('#form_message').html('Thanks. Your message is on its way!')});
 }
 
 function formValidate(){
	 if($('#math option:selected').text()!='5'){
		 $('#math').addClass('error');
		 $('#math_label').addClass('error');
		 return false;
	 }else{
		 $('#math').removeClass('error');
		 $('#math_label').removeClass('error');
		return true; 
	 }
	 
 }
