$(document).ready(function() {
	$('#tabs').show();
	
	$('#tab-3').css('background-position', '0px 0px');
	
	$('#tab-1').click(function(e) {
		$('#tab-1').css('background-position', '0px 0px');
		$('#tab-2').css('background-position', '0px -26px');
		$('#tab-3').css('background-position', '0px -26px');
		$('#main_tab_article').hide();
		$('#main_tab_event').hide();
		$('#main_tab_content').show();
	});
	
	$('#tab-2').click(function(e) {
		$('#tab-1').css('background-position', '0px -26px');
		$('#tab-2').css('background-position', '0px 0px');
		$('#tab-3').css('background-position', '0px -26px');
		$('#main_tab_content').hide();
		$('#main_tab_article').hide();
		$('#main_tab_event').show();
	});
	
	$('#tab-3').click(function(e) {
		$('#tab-1').css('background-position', '0px -26px');
		$('#tab-2').css('background-position', '0px -26px');
		$('#tab-3').css('background-position', '0px 0px');
		$('#main_tab_content').hide();
		$('#main_tab_event').hide();
		$('#main_tab_article').show();
	});
	
	$(function() {
		$('#center').sortable({
			appendTo: 'body', 
			items: '.box_c',
			helper: 'original',
			placeholder: 'placeholder',
			forcePlaceholderSize: true,
			handle: $('img.hand'),
			opacity: 0.5,
			axis: 'y'
		});
		
		$("#center").disableSelection();
	});
	
	$(function() {
		$('#right').sortable({
			appendTo: 'body', 
			items: '.sort',
			helper: 'original',
			placeholder: 'placeholder',
			handle: $('img.hand_small'),
			opacity: 0.5,
			axis: 'y'
		});
		
		$("#right").disableSelection();
	});

	$('img.hand').click(function() {
		$.ajax({
			type: 'POST',
			url: 'http://dlafirmy.info.pl/test2/',
			data:	{ 
						test: '1' 
					},
			timeout: 30000
		});
	});
	
	
	
	$('img.hand_small').click(function() {
		$.ajax({
			type: 'POST',
			url: 'http://dlafirmy.info.pl/test2/',
			data:	{ 
						test: '2' 
					},
			timeout: 30000
		});
	});
});
