var $j = jQuery.noConflict();

$j('document').ready(function(){
	if($j.cookie('comments') && $j.cookie('location') == window.location)
	{
		try
		{
			$j('.comments').html($j.cookie('comments'));
		}
		catch(e)
		{
			// oops
		}
	}
	$j('[rel=popup]').click(function(e){
		e.preventDefault();
		window.open($j(this).attr('href'), '', 'width=500,height=500,scrollbars=1');
	});
	$j('.comment_form').submit(function(event){
		event.preventDefault();
		if(!$j('#name').val())
		{
			alert('Please fill in your name.');
			return;
		}
		if(!$j('#email').val())
		{
			alert('Please fill in your email.');
			return;
		}
		if(!$j('#comment').val())
		{
			alert('Please type some comments.');
			return;
		}
		var name = $j('#name').val();
		var url = $j('#url').val();
		var comment = $j('#comment').val();
		var html = '';
		html += '<div class="comment">';
		if($j('#url').val())
		{
			html += '<h6><a href="' + url + '">' + name + '</a></h6>';
		}
		else
		{
			html += '<h6>' + name + '</h6>';
		}
		html += '<p>' + comment + '</p>';
		html = $j('.comments').html() + html;
		$j('.comments').html(html);
		$j.cookie('comments', html);
		$j.cookie('location', window.location);
		$j('#comment').val('');
	});


	// Lyriana affiliate stuff

	$j('.viga').click(function(e){
		e.preventDefault();
		window.location = 'http://www.vigorelle.com/ct/81751?b=607';
	});

	$j('.lyriana').click(function(e){
		e.preventDefault();
		window.location = 'http://www.lyriana.com/aff/B1249E50421AAF012FAD9FC242051400/index.html';
	});
});

