// The width= parameter below should match the width in the fblikelisting style in property-details.css
$(window).load(function(){
	// If the facebook like feature is enabled, then set the src for the iframe so it will
	// load now that the dom has loaded
	var fbLikeIframe = $('#fbLikeIframe');
	if ($('#fbLikeIframe')) {
		var likeUrl = fbLikeIframe
		fbLikeIframe.attr('src', fbLikeIframe.attr('data-likeurl'));
		fbLikeIframe.show();
	}
});

