$().ready( function() {

	videos();

});

function videos(){
	
	$('.videos .navigation a').bind("click", function(){

		$('.videos .navigation .thumb').removeClass('affect');

		video = $(this).attr('href').replace("#", "");

		jQuery.ajax({
			type: "POST",
			url: "modules/widgets/videos-ajax.php",
			data: "video="+video,
			success: videoResponse
		});

			$(this).parent().parent().addClass('affect');
		
		return false;
	
	});

}

function videoResponse(response) {
	$('.video').html(response);
	return false;
}
