$(function(){
	//$(document).pngFix();
	$('a[rel=legal-popup]').click(function(event){
		$.ajax({
			url: $(this).attr('href'),
			success: function(data) {
				var $content = $(data).find('.page-content');
				var $window = $('#signup-terms');
				$window.find('.terms-popup-box').html($content);
				$.modal($window.html(), {});
			}
		});
		return event.preventDefault();
	});
	$('a[rel=legal-dom-popup]').click(function(event){
		target = $(this).attr('href');
		$.modal($(target).html(), {});
		return event.preventDefault();
	});
	$('.competition-entry-form a.btn').click(function(){
		$(this).parents('form.competition-entry-form').submit();
	});
	$('a[rel=send-to-friend]').click(function(event){
		var win = window.open($(this).attr('href'), 'sendtofriend', 'width=650,height=350,scrollbars=yes');
		win.focus();
		return event.preventDefault();
	});
});
