$(document).ready(function(){

	    var options = {
	        resizeLgImages:     false,
	        displayNav:         true,
	        handleUnsupported:  'remove',
	        keysClose:          ['c', 27], // c or esc
	        autoplayMovies:     false,
	    };

	    Shadowbox.init(options);
	    
	    $('.boxgrid.caption').hover(function(){
			$(".cover", this).stop().animate({left:'230px'},{queue:false,duration:500});
		}, function() {
			$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:500});
		});
		
	    $('.boxgrid.caption').click(function(){
			$(".cover", this).stop().animate({left:'230px'},{queue:false,duration:500});
		});

		$("#tabs").tabs();
		
		$('#tag-form').addClass('hide');
		
		$('#tag-add').toggle(
				function() { $('#tag-form').slideDown('fast'); }, 
				function() { $('#tag-form').slideUp('fast'); }
		);
		
	    
});
