// JavaScript Document
$(function() {
		$(".list tr:nth-child(odd)").addClass("odd");
		$(".list tr:nth-child(even)").addClass("even");
      
		$("A.external_link").click( function() {
        window.open( $(this).attr('href'), 'external_w' );
        return false;
       });
		
		$('#header').bind('click', function() {
			window.open("index.php", '_self');
		});
		
		$("A.external_link").click( function() {
        window.open( $(this).attr('href'), 'external_w' );
        return false;
       });
		 
		$('a.lightbox').lightBox(); // Select all links with lightbox class
				 
		$('#ccvhelper').hide();

		$('a.slick-toggle').click(function() {
      
		$('div#ccvhelper') // the details we want
         .toggle(400);
			return (false);				   
      });

});
 