// create custom animation algorithm for jQuery called "bouncy" 
$.easing.bouncy = function (x, t, b, c, d) { 
    var s = 1.70158; 
    if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 
    return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 
} 
 
// create custom tooltip effect for jQuery Tooltip 
$.tools.tooltip.addEffect("bouncy", 
 
    // opening animation 
    function(done) { 
        this.getTip().animate({top: '+=15'}, 500, 'bouncy', done).show(); 
    }, 
 
    // closing animation 
    function(done) { 
        this.getTip().animate({top: '-=15'}, 500, 'bouncy', function()  { 
            $(this).hide(); 
            done.call(); 
        }); 
    } 
);

 
 	$(document).ready(function() { 
	
    $("#demo a[title]").tooltip({tip: '#demotip', effect: 'bouncy'});
});

 			setTimeout (function(){
					$('.custom-border-fade').show(900); },500);
					
	
					setTimeout (function(){
					//show the success message
					$('.custom-backg-fade').fadeIn(500); },1200);
					
						setTimeout (function(){
					//show the success message
					$('#our-responsibility-right-wrap').fadeIn(500); },1500);
					
					
						setTimeout (function(){
					//show the success message
					$('#our-photo1').fadeIn(500); },1700);
					
					
						setTimeout (function(){
					//show the success message
					$('#our-photo2').fadeIn(500); },1900);
					
					
						setTimeout (function(){
					//show the success message
					$('#our-photo3').fadeIn(500); },2000);
					
					
						setTimeout (function(){
					//show the success message
					$('#our-photo4').fadeIn(500); },2200);		
	