$(document).ready(function(){
	setTimeout(function() { window.scrollTo(0, 1) }, 100);
		
$(function() {

    $('#slideshow').cycle({
        fx:      'scrollHorz',
		speed:   'slow',
		timeout: 3000,
        pager:   '#button_holder',
		activePagerClass: 'focused',
		pagerAnchorBuilder: function(idx, slide) { 
			return '<a href="#" class="ss_button"></a>';
		}
    });
});

	$(function() {
	  var $div = $("#slideshow");
	  var html = $div.html();
	  var checking = setInterval(function() {
	    var newhtml = $div.html();
	    if (html != newhtml) {
	      myCallback();
	      html = newhtml;
	    }
	  },500);

	$(document).ready(function(){
		var name = $('.featured_big:visible').children('a').attr('title');
		var desc = $('.featured_big:visible').children('a').attr('alt');
		var href = $('.featured_big:visible').children('a').attr('href');
		$('#featured_big_details').html("<a href='" + href + "' id='slideshow_title'>" + name + "</a><p><b>Client: </b>" + desc + "</p>")
	});

	  function myCallback() {
		var numvis = $('.featured_big:visible').length;
		if (numvis == 1) {
			var name = $('.featured_big:visible').children('a').attr('title');
			var desc = $('.featured_big:visible').children('a').attr('alt');
			var href = $('.featured_big:visible').children('a').attr('href');
			$('#featured_big_details').html("<a href='" + href + "' id='slideshow_title'>" + name + "</a><p><b>Client: </b>" + desc + "</p>")
		}
	  }
	});
});
