$(function(){
	$("#galleryboxes div.box").each(function(){
		var $this = $(this);
		if ($this.hasClass("gallery")) {
			$this.click(function(){
				var images = [];
				$this.find("p.galleryimages a").each(function(){
					images.push($(this).attr("href"));
				});
				$.fancybox(images,{
					"type": "image"
				});
			});
			$this.find("p.galleryimages").hide();
		} else {
			var link = $this.find("a").attr("href");
			$this.click(function(){
				$.fancybox({
					"href": link,
					"width": 640,
					"height": 480
				});
			});
		}
		$this.hover(function(){
			$this.find("div.gallerybox-data").animate({
				"margin-top": "85px"
			}, 200);
		},function(){
			$this.find("div.gallerybox-data").animate({
				"margin-top": "105px"
			}, 200);
		})
	});
});
