$(window).load(function(){


// Start Find Section +++++++++++++++






// Start Footer Animations +++++++++++++++++++++++++++++++++++

				
  		$('li#bc_privicy').hide();
	  	$('li#bc_disclaimer').hide();
	 
	  
	//Footer Animations
	
		$('a#bc_privicy_but').click(function() {
		$('li.fotpnd').removeClass('fotpnd').slideToggle();
    	$('li#bc_privicy').slideToggle().addClass('fotpnd');
		$('html, body').animate({
		scrollTop: $("li#bc_privicy").offset().top
		}, 2000);
		return false; 
		});
		
		
		$('a#bc_disclaimer_but').click(function() {
		
		$('li.fotpnd').removeClass('fotpnd').slideToggle();
		
    	$('li#bc_disclaimer').slideToggle().addClass('fotpnd');
		$('html, body').animate({
		scrollTop: $("li#bc_disclaimer").offset().top
		}, 2000);
		return false; 
		});
		
		
		$('a.bc_footer_closer').each(function(){
		
		$(this).click(function() {
		
		var parentLid = $(this).parent("li");
		
		if (parentLid.hasClass("fotpnd")) {
		
		$(parentLid).removeClass('fotpnd').slideToggle();
	  	$('html, body').animate({
		scrollTop: 0
		}, 2000);
		
		} 
		
		return false; 
		}); //end clik
		}); //end each



});
