


$(document).ready(function(){
	
    $(".draggable").draggable();
    $(".stickerAgency").draggable();
    $(".stickerPack").draggable();
    
    $(".draggable").effect("bounce", { times: 4, distance: 8 },  300);
   	$(".stickerAgency").effect("bounce", { times: 4, distance: 8  }, 300);
    $(".stickerPack").effect("bounce", { times: 4, distance: 8  }, 300);
    
    $(".more").effect("pulsate", { times: 5 }, 1500);
    

    
    $(".email").click(function () {
    	$(".info").fadeOut("fast", function() {
    		$(".info").html('<a style="color:#006374; font-weight:normal;" href="contact.php">Contact us</a>');
    		$(".info").fadeIn("fast");
    	});
    	$(this).css("color","#fff");
    	$(".call").css("color","#006374");
    	$(".write").css("color","#006374");     
    });
    
    $(".call").click(function () {
    	$(".info").fadeOut("fast", function() {
    		$(".info").html('<p style="padding-top:5px;">0131 558 5400</p>');
    		$(".info").fadeIn("fast");
    	});
    	$(this).css("color","#fff");
      	$(".email").css("color","#006374");
    	$(".write").css("color","#006374");
    });
    
    $(".write").click(function () {
    	$(".info").fadeOut("fast", function() {
    		$(".info").html('<p>77 Montgomery Street<br />Edinburgh<br />EH7 5HZ</p>');
    		$(".info").fadeIn("fast");
    	});
    	$(this).css("color","#fff");
      	$(".call").css("color","#006374");
    	$(".email").css("color","#006374");
    });
    
    
    $('.cycler').cycle({ 
    	fx: 'scrollLeft',
    	timeout:       0,
    	delay:         -10000, 
    	next: '.more'
	});
    
    
    
   
});

 



