$(document).ready(function(){
	$('#slideshow').after('<ul id="slideshownav">').cycle({ 
    	fx:     'scrollHorz',
	    //easing: 'bounceout',
		timeout: 0,
		speed: 500,
		next:   '#slideshownext', 
		prev:   '#slideshowprev',
		pager:  '#slideshownav', 
		pagerAnchorBuilder: function(idx, slide) { 
			return '<li><a href="#"><img src="' + slide.src.replace('main.', 'tiny.') + '" width="64" height="64" /></a></li>'; 
		} 
	});
	$('input,textarea').focus(function(){$(this).val($(this).attr('title') == $(this).val() ? '' : $(this).val());});
	$('input,textarea').blur(function(){$(this).val($(this).val() == '' ? $(this).attr('title') : $(this).val());});
	$('#galcats').change(function(){
		var sel = $(this)[0];
		document.location.href = '/gallery.php?cat=' + sel.options[sel.selectedIndex].value;
	});
	$('#slideshownavbox').click(function(){
		var src,t;
		$('#slideshow img').each(function(){
			if($(this).css('display') != 'none' && $(this).attr('src').indexOf('main.') > 0){
				src = this.src;
				t = this.title || this.alt;
			}
		});
		tb_show(t, src.replace('main.', 'large.'), 'galimg');
	});
});