$(function(){	

	//adds plus icon to items with showHide class on load
	$('.showHide').css('background','url(/images_global/icon_plus.gif) left 2px no-repeat').css('padding-left','16px');
	//hides next sibling of the parent of the showHide object
	$('.showHide').parent().next().hide();
	// targets the next sibling of the parent of the clicked "showHide" object and hides/shows it
	$('.showHide').click(function() {
		if (jQuery.browser.msie && parseInt(jQuery.browser.version) == "6" && $(this).parent().parent().parent().attr('id') == 'currentPod') {
			return false;
		}
		if ($(this).parent().next().css('display') == 'none') {
			$(this).css('background','url(/images_global/icon_minus.gif) left 2px no-repeat');
			$(this).css('padding-left','16px');
			$(this).parent().next().fadeIn("");
		} else {
			$(this).css('background','url(/images_global/icon_plus.gif) left 2px no-repeat');
			$(this).css('padding-left','16px');
			$(this).parent().next().fadeOut("");
		}
		return false;
		});
	
	
});
