
$(document).ready( function() {
	if ( $('#work-slider').length ) {
		$('#work-slider').jcarousel();
	}
	
	if ( $('.work-img a.img').length ) {	
		$('.work-img a.img').colorbox({
			photo: true,
			opacity: 0.5,
			close: 'закрыть',
			previous: '',
			next: '',
			current: '',
			maxHeight: '85%',
			title: function() {
				return $('#url');
			}
		});
	}
});


function getImgUrl( imgId ) {
	var maxWidth, maxHeight;
	maxWidth = maxHeight = 800;
	
	new $.ajax({
		url: '/ajax.php?mode=getimgurl&dw=' + maxWidth + '&dh=' + maxHeight + '&iid=' + imgId + '&key=1',
		success: function(data)
		{
			return data || "/images/nofoto.gif";
		},
		error: function()
		{ 
			return "/images/nofoto.gif"; 
		}
    }); 
}

$(function() {
	// Use this example, or...
	$('#img-list a').lightBox(); // Select all links that contains lightbox in the attribute rel
});
