
jQuery(function($) {
  $(document).ready(function(){
    $("h3.showhideheader").next(".showhidecontent").hide(); 
	$("h3.showhideheader").each(function(){
		var imgurl = $(this).css('background-image').replace('url(', '').replace(')', '').replace('"', '').replace('\'', '');
		$(this).html('<img class="forprint" className="forprint" src="'+imgurl+'" /> '+$(this).html());
	});
    $("h3.showhideheader").bind('click', function() {
      $(this).toggleClass("selected");
      $(this).next(".showhidecontent").toggle("normal");
		var imgurl = $(this).css('background-image').replace('url(', '').replace('")', '').replace(')', '').replace('"', '').replace('\'', '');
		$(this).find(".forprint").attr("src",imgurl);
    });
    //show first record
    $("h3.showhideheader").first().trigger('click');    
    $("h3.showhideheader").hover(
      function () {
        $(this).addClass("hover");
      },
      function () {
        $(this).removeClass("hover");
      }
    );
  })
})
