function gts_getGifts(cat) {
	
	gts_startGetGifts();

	jQuery.post(
		'/ajax/getgifts__' + cat + '/', 
		function(response) {
			jQuery('#giftAjaxContainer').html(unescape(response));
			gts_finishGetGifts(cat);
		},
		"html"
	);
	
	return false;
}

function gts_startGetGifts() {
	jQuery('#giftAjaxContainer').hide();
	jQuery('#loader').show();
}

function gts_finishGetGifts(cat) {
	jQuery('#loader').hide();
	jQuery('#giftAjaxContainer').show();
	jQuery('.giftcat-option').css("font-weight", "normal");
	jQuery('#cat_' + cat).css("font-weight", "bold");
}


function gts_getThemes(cat) {
	
	gts_startGetThemes();

	jQuery.post(
		'/ajax/getthemes__' + cat + '/', 
		function(response) {
			jQuery('#giftAjaxContainer').html(unescape(response));
			gts_finishGetThemes(cat);
		},
		"html"
	);
	
	return false;
}

function gts_startGetThemes() {
	jQuery('#giftAjaxContainer').hide();
	jQuery('#loader').show();
}

function gts_finishGetThemes(cat) {
	jQuery('#loader').hide();
	jQuery('#giftAjaxContainer').show();
	jQuery('.giftcat-option').css("font-weight", "normal");
	jQuery('#cat_' + cat).css("font-weight", "bold");
}

