﻿
$(document).ready(function(){

    $('#photo_col').cycle({
    fx:    'fade'
});

    $('#photo_caption').cycle({
    fx:    'fade'
});


    $('a#link-index').click(function() {
    $('#about').fadeOut('fast');
    $('#web').fadeOut('fast');
    $('#photos').fadeOut('fast');
    $('#photo_caption').fadeIn('slow');
    return false;
  });
  
    $('a#link-about').click(function() {
    $('#web').fadeOut('fast');
    $('#photos').fadeOut('fast');
    $('#photo_caption').fadeOut('fast');
    $('#about').fadeIn('slow');
    return false;
  });
	
    $('a#link-web').click(function() {
    $('#about').fadeOut('fast');
    $('#photos').fadeOut('fast');
    $('#photo_caption').fadeOut('fast');
    $('#web').fadeIn('slow');
    return false;
  });
  
    $('a#link-photos').click(function() {
    $('#about').fadeOut('fast');
    $('#web').fadeOut('fast');
    $('#photo_caption').fadeOut('fast');
    $('#photos').fadeIn('slow');
    return false;
  });


});


function populate(){
var tag = document.getElementById('tag').value;
document.getElementById('photos').innerHTML = getFlickr.html[tag].replace(/_m\.jpg/g,'_s.jpg');
document.getElementById('tags').innerHTML = getFlickr.tags[tag];
return false;
}
