jQuery.noConflict();

jQuery(window).load(function() {

slideCount = jQuery('#slideshow').children().length;
	if (slideCount > 1) {
		jQuery("#slideshow").after('<a href="#" onclick="return false" title="Previous" class="slideshow-prevnext" id="previous-slide"><span>Previous</span></a><a href="#" onclick="return false" title="Next" class="slideshow-prevnext" id="next-slide"><span>Next</span></a>');
    jQuery('#listing-info').append('<div id="thumbnails"></div><!-- #thumbnails -->');
    if(jQuery('#units').length > 0) {
      jQuery('#units').before('<div id="thumbnails"></div><!-- #thumbnails -->');
    } else {
      jQuery('#project-info').append('<div id="thumbnails"></div><!-- #thumbnails -->');
    }
		jQuery('#slideshow').cycle({
			speed: 500,
			next: '#next-slide',
			prev: '#previous-slide',
			timeout: 0,
			pager: '#thumbnails',
			pagerAnchorBuilder: function(idx, slide) {
		    var src = jQuery('img',slide).attr('src');
		    return '<a href="#"><img src="' + src + '" height="57.5" width="57.5" /></a>';
			}
		});
		jQuery('.slideshow-prevnext').hover(function(){
			jQuery(this).children('span').css({"background-color":"rgba(0,0,0,0.5)"});
		}, function() {
			jQuery(this).children('span').css({"background-color":"rgba(0,0,0,0.25)"});
		});
	}
	var pic_real_width;
		jQuery('#slideshow .slide img').each(function() {
		    jQuery(this).removeAttr("width").css({"width": ""}); // Remove css dimensions as well
				pic_real_width = this.width;
				shift = ((pic_real_width/2)+5);
				jQuery(this).css({"left":"50%", "margin-left":"-"+shift+"px"});
		});
});


