
 // JavaScript Document

$(document).ready(function() {

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

				$('div#cvnew:eq(0)> h2').click(function() {
				
				$(this).next().slideToggle('fast');
				
				});
		$('div#cvnew:eq(0)> img').click(function() {
		
		$(this).next().next().slideToggle('fast');
		
		});


				$('div#cvnew2:eq(0)> h2').click(function() {
				
				$(this).next().slideToggle('fast');
				
				});

		$('div#cvnew2:eq(0)> img').click(function() {
		
		$(this).next().next().slideToggle('fast');
		
		});

  

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

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

	return false;

	

  });


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

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

	return false;

	

  });


});    

