/* Author: MAJO*/

$(document).ready(function() {	

//AJUSTAR ALTURA
    $(window).resize(function () {
        $('.contenedor').css({
            position: 'absolute',
            display: 'inline',//mostramos el elemento
            left: ($(window).width() - $('.contenedor').outerWidth()) / 2,
            top: ($(window).height() - $('.contenedor').outerHeight()) / 6
		});
		
    });
	
    $(window).resize();

/*LI NRO*/
var numitems = $("ul.photos li").length;
var mywidth = (numitems * 261 + 5);
$("ul.photos").width(mywidth);
//$("ul.photos").fadeOut();

/*CAPTION*/
$('.sub img').hover_caption();

////////////////////
});
