

jQuery(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
jQuery('.invisibox').hide();
jQuery('.toggle_hide').hide();
 
//	make all toggle links active
jQuery('.toggle_link').click( function() {
		
		//	slide toggle the next element in the DOM 
		jQuery(this).toggle();	
		jQuery(this).siblings('.toggle_hide').toggle();
		jQuery(this).siblings('.thumb').toggle();
//		jQuery(this).next().toggle(500);	
		jQuery(this).siblings('.invisibox').toggle(500);	

	
		//	if it's not the next item because there may be an arbitrary # them or of items in between you can say
		//	find me any of the siblings of class invisibox
		//	$(this).siblings('.invisibox').slideToggle();	
 
		//	make sure the link doesn't actually redirect
		return false;

	});
jQuery('.toggle_hide').click( function() {
		jQuery(this).siblings('.invisibox').toggle(500);
		jQuery(this).siblings('.toggle_link').toggle();
		jQuery(this).siblings('.thumb').toggle(100);	
		jQuery(this).toggle();
	});
});

