$(document).ready(function () {

	/* comment form */
	$('#respond').css('display','none');
	$('#add_comment').css('display','block');
	$('#add_comment').bind('click',function() {
		$('#respond').slideToggle("normal",function() {
			return true;
		});
	});

	$('#add_comment2').bind('click',function() {
		$('#respond').slideToggle("normal",function() {
			return true;
		});
	});

	$('#bookmarks_seesmic').bind('click',function() {
		if ($('#respond').is('*')) {
			$('#respond').slideToggle();
			see_set_comment_mode('videoRec','comment');
			return false;
		} else {
			return true;
		}
	});

   	Cufon.replace('h3');

	$('ul#image_fader').innerfade({
		speed: 700,
		timeout: 5000,
		type: 'sequence',
		containerheight: '74px'
	});	
	
});