<!--
//SUPPORT JAVASCRIPT
$(document).ready(function() {
	if ($('.supportOption').length) {
		$('.supportOption').each(function(){
			$(this).click(function() {
				if ($(this).attr('title').length) {
					var obj = $(this).attr('title');
					//var id = $(this).attr('id');
					var h4 = $(this).find('h4').html();
					showThis(obj,h4);
				}
			});
		});
	}
});
//-->
