// JavaScript Document

$(document).ready(function(){
						   
						
						   
					$('#services p.answer').hide();	 
				 
					
					$('#services h2.question').toggle(function(){
														   
														 $(this).removeClass('qopen');
														 $(this).addClass('qclose');
														  
														 $(this).next().animate(
																					 {'height': 'show'}, 1000, 'easeOutCirc'
																					 );
														 
														 
														 //$('.show_hide').attr('src', 'images/minus_blue.gif');
														 
														 }, function(){
															 
															 $(this).removeClass('qclose');
															  $(this).addClass('qopen'); 
															 
															 $(this).next().animate(
																					 {'height': 'hide'}, 1000, 'easeOutCirc'
																					 );
															// $('.show_hide').attr('src', 'images/plus_blue.gif');
															 
															 });
					
					 
					

						   
						   
						    $('a.about').click(function(){
								  $.scrollTo('#about', 1200, {easing:'easeOutCirc'});
								   return false;
								   });
						   
						    $('a.services').click(function(){
								  $.scrollTo('#services', 1200, {easing:'easeOutCirc'});
								   return false;
								   });

						 
						   
						   
						 
	$('a.contact').click(function(e) {
		$('#login-block').slideDown();
	});
	
	$('a.contact2').click(function(e) {
		$('#login-block').slideDown();
	});
	
	$('#login-close').click(function() {
		$('#login-block').slideUp();
	});  
						   
						   
						   
						   
						   });
