
// jquery starts
$(function() {
	
	$("#testimonial p").hide();
	
	$("#testimonial p").slideDown();
	
	$("#footer table img, #social a").hover(
      function () {
        $(this).fadeTo("fast", 0.5);
      },
      function () {
        $(this).fadeTo("fast", 1);
      }
    );
	
	$("#show_form").click(function(){
		   $("#new_service").slideToggle();
		   return false;
   });
	
	$("a.delete").click(function(){
		return confirm('Are you sure you want to permanently delete this item?');							 
	});
	
	var box = 'enquiries';
	var domain = 'rhandassociates.co.uk ';
	$("#email").html('<a href="mailto:' + box + '@' + domain + '">' + box + '@' + domain + '</a>');
	
	
	$("#logos").jCarouselLite({
	 auto: 2000,
	 speed: 1000,
	 visible: 5
	 
	 });

	
	
	
});

