// JavaScript Document


jQuery(document).ready(function() {
								
$('#slides').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 8000



	});

  $(".rightnav a").hover(
						   
	   function () {
      $(this).animate({  paddingLeft: "25px"}, {queue:false, duration:300});
						   },
		function () {
      $(this).animate({ paddingLeft: "15px"}, {queue:false, duration:300});
						   }				   
						   
    );
  
  
    $("#b").hover(
						   
	   function () {
      $(".bloglink").html('<a href="http://bluetopazmarketing.wordpress.com/" target="_blank">Blue Topaz Blog</a>');
						   },
		function () {
      $(".bloglink").html('<a href="#">Social Links</a>');
						   }				   
						   
    );
	
	    $("#t").hover(
						   
	   function () {
      $(".bloglink").html('<a href="http://twitter.com/Cindy_BlueTopaz/" target="_blank">Twitter Feed</a>');
						   },
		function () {
      $(".bloglink").html('<a href="#">Social Links</a>');
						   }				   
						   
    );
		
		
		
		    $("#in").hover(
						   
	   function () {
      $(".bloglink").html('<a href="http://uk.linkedin.com/in/cindyhorwood" target="_blank">LinkedIn</a>');
						   },
		function () {
      $(".bloglink").html('<a href="#">Social Links</a>');
						   }				   
						   
    );
	
	
  
  });


