var jq = jQuery.noConflict();

jq(document).ready(function($) {
	
	/* Clearing inputs
	---------------------------------------------- */
	$('.clear-me').each(function() {	
		var VALUE = $(this).attr('value');
			
		$(this).focus(function() {
		 	if ($(this).attr('value') == VALUE)
				$(this).attr('value', '');
		});		
		$(this).blur(function() {
		 	if ($(this).attr('value') == '')
				$(this).attr('value', VALUE);
		});
	});
	
	/* Helpers
	---------------------------------------------- */
	$('#games-list li:nth-child(even)').addClass('last');
	$('#game').html('');
	
	$.ajax({
		type: 'GET',
		url: '/gra',
		success: function(data) {
			$('#game').html('Wczytuję grę...');
			$('#game').html(data);
		}
	});
	
});
