function check( id ){

	$("#check-"+id).addClass("active");

	$("#inp-"+id).val("1");

}



function uncheck( id ){

	$("#check-"+id).removeClass("active");

	$("#inp-"+id).val("0");

	

}



function toggle( id ){

	if( $("#check-"+id).hasClass("active") ){

		uncheck( id );

	}else{

		check ( id );

	}

}

var clip = null;
function copy( text ){
	if(!clip){
		ZeroClipboard.setMoviePath('http://www.run.bg/swf/ZeroClipboard.swf');
		clip = new ZeroClipboard.Client();
	}
	clip.setText( text );
}

var sharer_windows = new Array();

var n = 0;

function open_window( url ){

	var win = window.open(  );

	win.document.location = url;

	return false;

}
