
					jQuery(document).ready(function(){ 
					jQuery("ul.imagelinks > li > a.imagelink").fancybox({
						"overlayShow":true,
						"overlayOpacity":0.9,
						"zoomSpeedIn": 1000,
						"zoomSpeedOut": 250 
					}); 
					
					oldoffset = 0;
					
					jQuery('ul.imagelinks > li').each(function(i){
						offset = jQuery(this).offset();
						if(offset["top"] != oldoffset && oldoffset != 0){
							margin = jQuery(this).css("margin-right");
							jQuery(this).css("margin-right",0);
							newoffset = jQuery(this).offset();
							if(newoffset["top"] == offset["top"]){
								jQuery(this).attr("style","");
								jQuery(this).siblings("li:eq("+(i-1)+")").css("margin-right",0);

							}
						}			
						oldoffset = offset["top"]; 
					});
					
					//jQuery('ul.imagelinks > li:nth-child(3n)').css('margin','0 0 14px 0');
				});	
