





function alege_categorie(){

	$('span#subcategorie').html("<img src='imagini/working.gif' border='' alt='Se incarca..' />");

				$.ajax({

					type: "GET",

					url: "ajax.php",

					cache: false,

					data: ({categorie: $('select#categorie').val()}),

					success: function(mesaj) {

                         $('span#subcategorie').html(mesaj);

					}

				});



}







function set_subcategorie(){

	var jqcat = $('select#categorie').val();

	var jqsubcat = $('select[name=subcategorie]').val();

				$.ajax({

					type: "GET",

					url: "ajax.php",

					cache: false,

					data: ({categorie: $('select#categorie').val(), act: 'set', subcategorie: jqsubcat}),

					success: function(mesaj) {

                         //$('#subcategorie').html(mesaj);

					}

				});

}





function set_cookie(){



				$.ajax({

					type: "GET",

					url: "setcookie.php",

					cache: false,

					data: ({set: "yes"}),

					success: function(mesaj) {

                         redir_to_home();

					}

				});

}



function sign_out(){



				$.ajax({

					type: "GET",

					url: "signout.php",

					cache: false,

					data: ({set: "yes"}),

					success: function(mesaj) {

                         redir_to_home();

					}

				});

}



