google.setOnLoadCallback(function() {
     $(document).ready(function() {
		$('.VendorTitleRow').click(function() {
			$('.VendorRow').toggle();
			
			// if image is not the collapsed image, then change to collapsed
			if ($('.VendorTitleRow img').attr('src').indexOf('_collapsed') == -1) {
				$('.VendorTitleRow img').attr('src', 'images/right-menu/ourvendors_title_collapsed.jpg');
			} 
			else {
				$('.VendorTitleRow img').attr('src', 'images/right-menu/ourvendors_title.jpg');
			}
		});
	});
});
