$(document).ready(function() {
	
	var conf_fullSiteAdress = 'http://www.prohunting-shop.cz/';

	$('#menu li a:first').css('border', 'none');
	$('#menu li a:first').css('-moz-border-radius-topleft', '15px');
	$('#menu li a:first').css('-webkit-border-top-left-radius', '15px');
	
	$('#menu li a:last').css('-moz-border-radius-topright', '15px');
	$('#menu li a:last').css('-webkit-border-top-right-radius', '15px');
	
	$('.product:odd').css('float', 'right');
	
	// PRODUCT LIST STRUCTURE
	
	$('.product_list li a.list').toggle(function() { // nema byt click?
		$(this).parent('li').find('ul:first').toggle('fast'); // show
		$(this).css('background-image', 'url(' + conf_fullSiteAdress + 'images/structure/product_list_arrow2_hover.png)');
	}, function() {
		$(this).parent('li').find('ul:first').toggle('fast'); // slideUp
		$(this).css('background-image', 'url(' + conf_fullSiteAdress + 'images/structure/product_list_arrow2.png)');
	});	
	
	// SHOW SELECTED ITEM
	
	$('.selected_item').parents().show();
	
	// SEARCH BOX 
	
	$('.search_box').focus(function() {
		$('.search_submit').show();
	});
	
	$('#search_form').submit(function(ev) {
		ev.preventDefault();
		var searchTerm = $("input[name = search_term]").val();
		var search_location = conf_fullSiteAdress + "hledat/" + searchTerm + "/";
		window.location.replace( search_location );
	});
		
	// ORDER BY SELECT INPUT
	
	$("select[name='orderSelect']").change(function() {
	var orderValue = $(this).find('option:selected').attr('value');
		$.post( conf_fullSiteAdress + 'scripts/setSession.php', { 'sessionName': 'orderBy', 'value': orderValue }, function(data) { 
			location.reload();					
		});
	});
	$("select[name='sortSelect']").change(function() {
	var orderValue = $(this).find('option:selected').attr('value');
		$.post( conf_fullSiteAdress + 'scripts/setSession.php', { 'sessionName': 'sortSelect', 'value': orderValue }, function(data) { 
			location.reload();					
		});
	});
	$("select[name='consultCat']").change(function() {
	var orderValue = $(this).find('option:selected').attr('value');
		$.post( conf_fullSiteAdress + 'scripts/setSession.php', { 'sessionName': 'consultCat', 'value': orderValue }, function(data) { 
			location.reload();					
		});
	});
	
	// POLL
	
	$('a.poll_option').click(function() {
		var thisPollOption = $(this);
		var optionID = $(this).attr('rel');
		$.post( conf_fullSiteAdress + 'scripts/vote.php', { 'optionID': optionID }, function(data) { 
			var parentDiv = thisPollOption.parent();
			$('<div></div>').insertAfter(parentDiv).html(data);
			parentDiv.hide();
			//$('#what').html(data);
			//alert( data );
		});
		return false;
	});
	
	// DODACÍ ÚDAJE SHOW
	
	var i = 0;
	$('.duh').hide();
	$('.duh_click').click(function() {
		if(i == 0) {
			$('.duh').show();
			i = 1;
		} else {
			$('.duh').hide();
			i = 0;
		}
		return false;
	});

});


