$(document).ready(function() {
	// filter
	$('input[type=radio][id^=filter_]').click(function() {
		
		url = baseUrl + getCategoryRS(window.location.href);
		
		if($(this).val() != 'all') url += '/filtr-' + $(this).val();
		window.location = url += '.html';;
	});
	
	$('#radit').change(function() {
		index = window.location.href.indexOf('?');
		url = index > 0 ? (window.location.href.substr(0, index)):(window.location.href);
		if($(this).val() != null && $(this).val() != 'obluba') {
			url += '?zoradit=' + $(this).val();
		}
		window.location = url;
	});
	
	$('#btnOrderProductsSubmit').hide();

});


function getCategoryRS(url) {
	url = url.substr(baseUrl.length);
	index = url.indexOf('/');
	if(index > 0) return url.substr(0, index);
	else return url.substr(0, url.indexOf('.'));
}
