$(document).ready(function() {
  $('#fotos a').click(
    function () 
    {
        $('#col2col2 img').attr('src',$(this).attr('href'));
        /*$('#content-footer p').html($(this + ' .hideme').html());*/
		$('#content-footer').empty().html($(this).prev('div.hideme').html());
        return false; 
    })
  $('#fotos').css({'overflow':'hidden'});
});

function browse(start) {

    if(undefined == start) start = 0;
    $('#fotos a').hide();
    
    $('#fotos a').each(function(i) {
        if(i >= start && i < start+12) {
            $(this).show();
        }
    });
    
    return false;
}
