// JavaScript Document
$(document).ready(function() {

	$('#gallery') 
    .livequery(function(event) { 
        $(this).cycle({
				fx: 'fade', 
				timeout: 3000, 
				speed: 1000, 
				delay: -1000,
				pager: '#pager',
				next: '#next',
				prev: '#prev'
			});
		/* $(this).cycle('pause');
		$('#playControl').text('Play'); */
        return false; 
    }); 

	$('#playControl') 
    .livequery(function(event) { 
		$(this).toggle(
		function() {
			$('#gallery').cycle('pause');
			$(this).text('Play');
		},
		function() {
			$('#gallery').cycle('resume');
			$(this).text('Pause');		
		});
		return false;
	});
	
	/* show current sub-menu */
	$('.nav li:has(a#st)').children("ul").show().addClass("open");
	
	
	$('#photo_archives a').click(function() {
	
	$('#photo_archives a').removeClass('this_archive'); /* remove current slideshow class if prev. selected */
     var url=$(this).attr('href');
     $('#slideshow').load(url);
	 $(this).addClass('this_archive'); /* to distinquish currently seceled slide */
	 
	$('#gallery').cycle('pause');
     return false;
  });
  
			
}); /* end ready */
