var catalogue = {}


catalogue.photoGallery = function(photos)
{
	
}

catalogue.photoOld = 0;
catalogue.photoGalleryOpen = function(photo)
{
				
	if (catalogue.photoOld  != 0)
	{
		$("#small_" + catalogue.photoOld).attr("class", "gray_border");
	}
	
	var photos = catalogue.photos;
	
	
	for (i = 0; i<photos.length; i++)
	{
		
		if (photos[i].filename == photo)
		{
			var deliter = Number(photos[i].width) / 600;
			var height = photos[i].height / deliter;
			$(".big-photo").css({width:"600px", height: height+"px"});
			break;
		}
	}
	
	$("#small_" + photo).attr("class", "selected");
	
	
	$(".big-photo").html("<img class='big-photo-img' src='http://brandwatches.com.ua/images/catalogue_photos/"+photo+".jpg' style='width:600px; ' alt=''/>");

	catalogue.photoOld = photo;
}

catalogue.filter = function(page)
{

	$.ajax({	
			url: HOST+"index.php"+page+"&ajax=404",
			success: function(data) 
			{
				location.href=location.href;
			}
	});
}
