//v.10182011KB
jQuery(document).ready(function ($) {

	// INPUT[TEXT] HINT
	$.fn.hint = function () {
		$(this).each(function () {
			$(this).val($(this).attr("title")).addClass("hint");
		});
		
		return $(this).focus(function () {
			if ($(this).val() === $(this).attr("title")) {
				$(this).val("").removeClass("hint");
			}
		}).blur(function () {
			if ($(this).val() === "") {
				$(this).val($(this).attr("title")).addClass("hint");
			}
		});
	};
	$("input[title]").hint();

	// TOGGLE SIDEBAR MENU
	$(".toggle_container").hide(); 
	$(".trigger .button").click(function (e) {
		e.preventDefault();
		$(this).closest(".trigger").toggleClass("active").find(".toggle_container").slideToggle("fast");
	});
	
});// noconflict end
