/***********************************************************
Scriptname: 	comments_quote.js
Dependencies: 	jquery.1.4.3
Version: 		1.0 live
Description:	Reply to a comment

Copyright: 		Webavance B.V. 2011 for Dusk!
Legal: 			Any use of this script without Webavance B.V.
				express written consent is prohibited
************************************************************/

(function($) {
	
	$.fn.comments_quote = function(c) {
		var e = $(this);
		var id = $('#reaction_form_quote_id');
		var txt = $('#reaction_form_quote_text');
		
		if (!c) c = {};
		
		c = $.extend({
		}, c);
		
		e.bind('click', function(x) {
			x.preventDefault();
			id.val($(this).attr('rel'));
			
			var title = '';
			$(this).parent().siblings('.reaction_middle').children('h4').find('cufontext').each(function() {
				title += $(this).html();
			});
			
			txt
				.css({ display: 'inline' })
				.html(
					'<blockquote>' + 
					'<h3>' + title + '</h3>' + 
					'<div class="reaction_description">' + $(this).parent().siblings('.reaction_middle').children('.reaction_description').html() + '</div>' + 
					'</blockquote>'
				);
				
			$(window).scrollTop(300);
		});
	};
	
})($);
