
 // JavaScript Document

$(document).ready(function() {

  $('div#cvnew:eq(0)> div').not(".showstart").hide();

$('div#cvnew:eq(0)> h2').click(function() {

$(this).next().slideToggle('fast');

});

  

    $('div#cvnew a.hideagain').click(function() {

	$(this).parent("p").parent("div").slideToggle('normal');
$(this).parent("div").slideToggle('normal');

	return false;

	

  });

	

	

	$('div#cvnew:eq(0)> h2').hover(function() {

  $(this).addClass('hover');

}, function() {

  $(this).removeClass('hover');

});

});    

