jQuery(function(){

	jQuery(".wp-caption a").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	jQuery('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
	
	jQuery('#sidebar1 .archives ul').hide();
	
	jQuery('#sidebar1 .archives h4').append('<span> &raquo;</span>');
	
	jQuery('#sidebar1 .archives h4').click(function(){
		jQuery(this).next('ul').toggle(500);
	});

	var element = document.getElementById('content');
	element.onselectstart = function () { return false; } // ie
	element.onmousedown = function () { return false; } // mozilla	

});
