$(document).ready(function(){
	if (window.location.pathname == '/stk')
	{
		$.cookie('show-bubble', 'no', { path: '/', expires: 365 });
	}
	if ($.cookie('show-bubble') != 'no')
	{
		$('#bubble').fadeIn('slow');
	}
	$("SPAN.checkbox",$(this)).each(function(i){
		$(this).click(function(){
			val=$(this).children('INPUT').val();
			$(this).children('SPAN.chck').removeClass('chck-'+val);
			$(this).children('INPUT').val((val==0?1:0));
			$(this).children('SPAN.chck').addClass('chck-'+(val==0?1:0));
		});
	});
	$('#bubble-close').click(function(){
		$.cookie('show-bubble', 'no', { path: '/', expires: 365 });
		$('#bubble').fadeOut('slow');
	});
});

