var temp;

$(document).ready(function() {
	if ($("body.node-15").length) {
		temp = '<img src="' + base_path + path_to_subtheme + '/images/check-white.gif" />'
		$("#node-15 tr.even td.yes").html(temp);
		temp = '<img src="' + base_path + path_to_subtheme + '/images/check-green.gif" />'
		$("#node-15 tr.odd td.yes").html(temp);
		temp = '<img src="' + base_path + path_to_subtheme + '/images/x-white.gif" />'
		$("#node-15 tr.even td.no").html(temp);
		temp = '<img src="' + base_path + path_to_subtheme + '/images/x-green.gif" />'
		$("#node-15 tr.odd td.no").html(temp);
	}
	if($("#block-views-random_testimonials").length > 0){
		$("body").addClass('srink-content-width');
	}
});