$(document).ready(function(){
    /* IFR */
    $('.lightbox').lightBox({
        fixedNavigation: true
    });
	$('.show_add_form').click(function() {
		var $offset = $('.show_add_form:eq(0)').offset();
		$('html, body').animate({
			scrollTop: $offset.top+'px'
		}, 300, function() {
			$('.addphoto_form').slideDown();
		});
	});
});

