$(document).ready(function(){
	$(".vc-sticker").click(function(){
		$(this).hide();								
		$("#vc-sticker").animate({ left: 0 }, {
           duration: 'slow',
           easing: 'jswing'
        }).animate({ left: 0 }, {
           duration: 'slow',
           easing: 'jswing'
       	});
		return false;	
	});
	
	$("#vc-sticker .vc-btn-close").click(function(){
		$(this).parent().css("left", '-406px');	
		$(".vc-sticker").show();
		return false;
	});
	
	$(".vc-sticker2").click(function(){
		$(this).hide();								
		$("#vc-sticker2").animate({ left: 0 }, {
           duration: 'slow',
           easing: 'jswing'
        }).animate({ left: 0 }, {
           duration: 'slow',
           easing: 'jswing'
       	});
		return false;	
	});
	
	$("#vc-sticker2 .vc-btn-close2").click(function(){
		$(this).parent().css("left", '-406px');	
		$(".vc-sticker2").show();
		return false;
	});

});
